Free HTTP Header Checker

Inspect all HTTP response headers, analyse security headers, and get a security grade for any website.

What This Tool Inspects

Every HTTP response header your server sends — security-graded and explained in plain language.

Security Headers
Grades HSTS, CSP, X-Frame-Options, X-Content-Type-Options, and Referrer-Policy — the headers that protect against XSS, clickjacking, and MIME sniffing attacks.
HTTP Status Code
The exact response code returned by your server — 200 OK, 301/302 redirects, 404 Not Found, 500 Server Error. Essential for debugging CDN and proxy configuration.
Content-Type Header
The MIME type and character encoding your server declares. A mismatch between the declared type and actual content can cause parsing errors and create security vulnerabilities.
Caching Headers
Cache-Control directives, ETag values, and Expires timestamps. Shows how long browsers and CDNs cache your responses and whether conditional revalidation is configured.
Server & Technology Disclosure
Server software and version info in response headers. Exposing your server version (Apache 2.4.x, nginx/1.18) gives attackers a target for specific known CVEs.
Redirect Chain
The full sequence of HTTP redirects from your initial URL to the final destination. Extra hops add latency and can break HSTS preloading if HTTP is not immediately redirected.

Frequently Asked Questions

What are HTTP security headers?

HTTP security headers are response headers that instruct browsers on how to handle your site content. They protect against common attacks like XSS (cross-site scripting), clickjacking, MIME sniffing, and man-in-the-middle attacks. Missing security headers are a frequent cause of web application vulnerabilities.

What is HSTS (HTTP Strict Transport Security)?

HSTS tells browsers to always connect to your site over HTTPS, even if users type "http://". This prevents SSL stripping attacks where an attacker downgrades your HTTPS connection to HTTP. Once a browser sees HSTS, it enforces HTTPS for the duration of the max-age value.

What is Content-Security-Policy (CSP)?

CSP is a powerful header that restricts which sources of content (scripts, styles, images, etc.) can be loaded on your page. A strict CSP dramatically reduces the risk of XSS attacks by preventing injected scripts from loading resources from attacker-controlled domains.

What is X-Frame-Options?

X-Frame-Options prevents your site from being embedded in iframes on other domains, protecting users from clickjacking attacks where malicious pages trick users into clicking on hidden elements from your site. Modern sites should use Content-Security-Policy frame-ancestors instead.

How do I fix missing security headers?

For Next.js, add headers in next.config.ts. For Nginx, add them in the server block. For Apache, use .htaccess or httpd.conf. For Cloudflare, use Transform Rules. CertNotify monitoring can alert you if security headers change or disappear after deployments.

Monitor Your Security Headers Continuously

CertNotify monitors your HTTP security headers and alerts you if they change or disappear after a deployment — before it becomes a vulnerability.

Related Free Tools