Enforced CSP is present
Review its directives and real resource needs; presence alone does not make the policy strong.
default-src 'self'; script-src 'self' 'unsafe-inline'; img-src 'self' data:; object-src 'none'Audit response headers, CSP, cookies, and CORS, then generate practical deployment fixes.
Repeated headers such as Set-Cookie are preserved.
Review its directives and real resource needs; presence alone does not make the policy strong.
default-src 'self'; script-src 'self' 'unsafe-inline'; img-src 'self' data:; object-src 'none'Prefer nonces or hashes for scripts and remove inline-style allowance when the application permits.
'unsafe-inline'After validating HTTPS coverage, increase max-age toward a long-lived production policy.
max-age=86400Consider includeSubDomains only after verifying HTTPS for the complete namespace.
max-age=86400The nosniff value is configured.
nosniffReview that its cross-origin disclosure matches the application's privacy needs.
strict-origin-when-cross-originDisable unused browser capabilities and delegate required features narrowly.
—The response limits which pages may frame this content.
SAMEORIGINCross-Origin-Opener-Policy can isolate top-level browsing contexts when compatible.
—Cross-Origin-Resource-Policy can restrict which sites read this resource.
—This can be correct for public resources; do not use it for private user-specific data.
*Mark session and sensitive cookies Secure so browsers send them only over HTTPS.
sessionCross-site cookies with SameSite=None must also use Secure.
sessionReduce unnecessary product/version details, while remembering that hiding them is not a security control.
demo/1.0Paste a raw header block, import a HAR response, or explicitly try a browser URL check with its CORS limitations.
Inspect weighted, evidence-based findings for CSP, HSTS, framing, referrers, permissions, cross-origin isolation, CORS, and cookies.
Create a suitable CSP, review the generated header set, and copy a snippet for your deployment platform.
No. This is a response-configuration review, not a vulnerability scan, penetration test, or compliance certification.
CORS can prevent a third-party web page from reading another site's response headers. HAR or copied headers preserve the evidence you can inspect locally.
Yes. Repeated headers are preserved and every cookie is checked separately for Secure, HttpOnly, SameSite, prefix, domain, and path behavior.
No. Start in Report-Only where practical, inventory real resource origins, test every user flow, and tighten the policy for your own application.
Keep working with other focused browser utilities.