What the issue means
A missing CSP header means the browser has fewer instructions for controlling scripts, frames, images, and other resources.
Security fix guide
A missing CSP header means the browser has fewer instructions for controlling scripts, frames, images, and other resources.
Run Full Website Security ScanA missing CSP header means the browser has fewer instructions for controlling scripts, frames, images, and other resources.
Content Security Policy can reduce the impact of cross-site scripting and content injection when it is carefully configured.
Check your response headers for Content-Security-Policy using a browser network panel, curl, or ZeriFlow's security headers checker.
Start with a report-only policy, review violations, then enforce a policy that matches your application assets.
add_header Content-Security-Policy "default-src 'self'; object-src 'none'; frame-ancestors 'self'; base-uri 'self';" always;Header always set Content-Security-Policy "default-src 'self'; object-src 'none'; frame-ancestors 'self'; base-uri 'self';"headers: async () => [{ source: "/(.*)", headers: [{ key: "Content-Security-Policy", value: "default-src 'self'; object-src 'none'; frame-ancestors 'self'; base-uri 'self';" }] }]Use Transform Rules or Response Header Modification to add a CSP header at the edge.