web.csp_missingBrowser protection
Play this card on https://example.com. Everything a developer (or your AI agent) needs to fix and verify it — free. Fixing your own site is never paywalled.
web.csp_missingPlay this card on https://example.com. Everything a developer (or your AI agent) needs to fix and verify it — free. Fixing your own site is never paywalled.
Demo public response headers do not include a Content-Security-Policy header.
A browser-enforced CSP limits the impact of injected scripts and unsafe third-party content.
Preview ingestion uses sanitized evidence only and does not store response bodies.
Add a CSP that starts in report-only mode, then tighten script and frame directives.
# in your server { } block
add_header Content-Security-Policy "default-src 'self'" always;infoStart strict, then add the exact sources your app needs (scripts, styles, images). Consider Content-Security-Policy-Report-Only first to find violations.
Pazmo checks for CSP or CSP-Report-Only on the target.
Evidence needed: Sanitized response headers showing CSP or CSP-Report-Only on the target.
Readiness mapping only — evidence relevant to these controls. Pazmo does not determine, certify, or guarantee compliance.