Home / Knowledge Base / Tools and integrations / Security Headers Check

Security Headers Check

Tools and integrations 2 min read Updated 13.09.2026
Six headers that are enabled on the server and cost almost nothing, the order of implementation from safe to tricky, and why CSP should be run in report mode.

The security headers check shows which protective mechanisms are enabled on the site and which are not. This is the cheapest form of hardening: almost everything is configured on the server side and does not require changes to the code. The tool is security headers audit.

What is checked

HeaderProtects againstImportance
Strict-Transport-SecurityForces https: protects against connection hijackingMedium
Content-Security-PolicyLimits where scripts are loaded from — the main protection against code injectionMedium
X-Frame-OptionsPrevents embedding the site in another frame (clickjacking)Low
X-Content-Type-OptionsPrevents the browser from guessing the file typeLow
Referrer-PolicyLimits what goes to external analytics when transitioningInformational
Permissions-PolicyDisables unnecessary capabilities: camera, microphone, geolocationInformational

Where to start

  1. HSTS — if the site is already fully on https, it can be enabled with a single line.
  2. Protection against clickjacking and type guessing — also one line, with no side effects.
  3. Content-Security-Policy — the most useful and the most finicky: start in report mode, otherwise you risk breaking your own scripts.
  4. Others — optional: these headers do not break anything and add neatness.
Be careful with CSP
The content security policy interrupts the loading of everything that is not explicitly allowed: external fonts, analytics, widgets, inline scripts. We have burned ourselves on this — an inline script without an allowing parameter simply does not execute, and the page silently loses functionality. Start with report mode, then enable.

What headers do not do

They do not protect against hacking through vulnerabilities in the code, do not heal an infected site, and do not replace CMS updates. Their task is to narrow down the attack possibilities in the visitor's browser and reduce damage if something goes wrong. A full check is a separate scanner: see malware and backdoor analysis.

Relation to other checks

These same headers are included in the Shield report and partially in the SEO Audit. The theoretical analysis of each is in the glossary: security headers. To view the raw response headers — headers check.

FAQ

Which header to start with?
With HSTS, if the site is already fully on https, then protection against clickjacking and type guessing — they are enabled with a line and do not break anything.
Why is it dangerous to enable CSP immediately?
The policy interrupts the loading of everything that is not explicitly allowed: external fonts, analytics, widgets, and inline scripts stop working silently.
Do these headers affect SEO?
Not directly, but they are part of the security assessment and reduce the risk of hacking, after which positions are lost for a long time.
Was this article helpful?
Try it on your project Everything described in the article is available in the dashboard — the registration bonus is already in your balance.
Open dashboard