eightyFree scan →
Home / Security headers
Security check

Security headers checker: your grade, and how to fix it

Scan your website for free and see every HTTP security header you are missing, explained in plain language with the exact fix. Not just a grade: the way to a better one.

Scan your website free

Get your speed, security, SEO and AI-visibility score in under a minute. No signup.

Run a free scan →

What are HTTP security headers?

HTTP security headers are small instructions your server sends with every page. They tell the browser how to protect your visitors: force an encrypted connection, block your site from being framed by scammers, and stop injected scripts from running. Together they are one of the cheapest, highest-impact security wins on the web.

Miss them and you leave the door open to cross-site scripting (XSS), clickjacking and protocol-downgrade attacks. Tools like securityheaders.com give you a letter grade. eighty gives you that same grade and the exact fix, right next to your speed, SEO and AI visibility in one report.

The headers that matter, and what each one does

HeaderWhat it doesWithout it
Strict-Transport-Security (HSTS)Forces every visit over HTTPS.Visitors can be silently downgraded to unencrypted HTTP.
Content-Security-Policy (CSP)Controls which scripts and resources may load.Injected scripts (XSS) can steal data and hijack sessions.
X-Frame-OptionsStops other sites from embedding yours in a frame.Clickjacking: attackers trick users into clicking hidden buttons.
X-Content-Type-OptionsStops the browser from guessing file types.Files can be interpreted as scripts (MIME sniffing).
Referrer-PolicyLimits what URL data leaks to other sites.Private URLs and query data leak to third parties.
Permissions-PolicyTurns off browser features you do not use (camera, mic).Third-party scripts can quietly request sensitive features.

How your grade is calculated

A grade from A+ to F is not just about presence, it is about quality. HSTS with a short lifetime scores lower than one with max-age of at least six months plus includeSubDomains. A CSP that still allows 'unsafe-inline' offers little real XSS protection. eighty checks both: which headers exist, and whether they are actually strong.

We also look past headers alone: a valid TLS certificate, an automatic HTTP-to-HTTPS redirect, secure cookie flags (Secure, HttpOnly, SameSite) and accidentally exposed files like /.git/ or /.env.

How to add security headers

You set headers where your site is served: your web server, your CDN, or your framework. A few examples:

Add CSP last and test it: start in report-only mode so you do not accidentally block your own scripts.

securityheaders.com vs eighty

securityheaders.com is a great quick grader for headers alone. eighty is built for the whole picture: we check your headers, TLS, cookies and exposed files, then combine that with your speed, SEO and AI visibility, and hand you a prioritised, plain-language plan to fix everything. One scan, the full story.

Scan your website free

Get your speed, security, SEO and AI-visibility score in under a minute. No signup.

Run a free scan →

Frequently asked questions

Is the security headers check free?
Yes. The scan and your grade with the four component scores are free. The full report with the exact fix for every issue is a one-time 9.95 euro, no subscription.
What is a good security headers grade?
Aim for A or A+. That means the important headers are present and strong: HSTS with a long max-age, a Content-Security-Policy without unsafe-inline, and clickjacking and MIME-sniffing protection in place.
Do security headers affect SEO?
Indirectly, yes. HTTPS is a ranking signal, and a site that feels unsafe hurts trust and conversions. Security is also one of the four things Google and users increasingly expect by default.
What is HSTS?
HTTP Strict-Transport-Security tells browsers to always connect over HTTPS, even if someone types http://. It closes the small window where a visitor could be downgraded to an unencrypted, interceptable connection.
Will adding a Content-Security-Policy break my site?
It can if you go too strict too fast. Start with Content-Security-Policy-Report-Only, watch what would be blocked, then tighten. eighty flags whether your current CSP is actually protective.