Add the missing security headers

2026-07-12 · updated 2026-09-05

Problem

The crawled response is missing one or more standard security headers. The crawler stores what it saw in the security sub-document; anything absent there is reported here.

Why it matters

How to fix

Set the headers at the web server or CDN level, then re-crawl to verify:

add_header Strict-Transport-Security "max-age=31536000; includeSubDomains" always;
add_header Content-Security-Policy "default-src 'self'" always;
add_header X-Content-Type-Options "nosniff" always;
add_header X-Frame-Options "DENY" always;
add_header Referrer-Policy "strict-origin-when-cross-origin" always;
add_header Permissions-Policy "camera=(), microphone=(), geolocation=()" always;

Start with report-only CSP (Content-Security-Policy-Report-Only) on complex sites, then enforce.