Does it request a URL or call a backend API?
No. It only checks the text you paste in the browser and does not request any URL.
DevToolkit
HTTP Security Headers Checker
Browser only
Paste raw HTTP response headers and review whether common security headers are present, reasonably configured, or exposing more than they should. All checking happens locally in your browser.
Deep dive
Useful when you want to sanity-check pasted response headers after you wire up a proxy, certificate, or CDN.
Overview
It inspects pasted HTTP response headers locally in your browser and highlights common security headers, risky values, missing protections, and information-leakage banners.
Input samples
Mostly secure response
HTTP/2 200 OK strict-transport-security: max-age=31536000; includeSubDomains content-security-policy: default-src 'self'; script-src 'self' 'unsafe-inline' x-frame-options: DENY x-content-type-options: nosniff
Response with isolation headers
content-security-policy: default-src 'self' cross-origin-opener-policy: same-origin cross-origin-resource-policy: same-origin cross-origin-embedder-policy: require-corp
Leaky banner example
server: nginx x-powered-by: Express referrer-policy: unsafe-url permissions-policy: geolocation=*
When to use it
Navigation
Keep moving through the collection, workflow, and adjacent tools that usually belong with this page.
Part of collection
Jump to the broader tool set that covers the same problem space.
Related workflow
Continue with the tool chain that usually goes together here.
Debug website headers and CORS
Parse response headers, review security protections, generate CORS snippets, and prepare redirect rules for web apps.
Related tools
Open the closest adjacent tools without leaving the current context.
Answers
Does it request a URL or call a backend API?
No. It only checks the text you paste in the browser and does not request any URL.
Can it replace a formal security audit?
No. It is a best-effort checker that helps you spot common issues, but it is not a substitute for a real audit or application review.
Why are Server and X-Powered-By called out?
Those headers can leak platform details and make fingerprinting easier, so the tool highlights them even when they are not strictly broken.
Disclaimer
This is a best-effort security headers checker, not a replacement for a formal security audit. Results depend on your application, your hosting stack, and your response behavior, so you may need to adjust headers for your specific use case. The tool checks pasted headers only, does not request any URL, and keeps all analysis in your browser.
Privacy
All parsing happens locally in your browser. No headers are uploaded, no backend request is made, and DevToolkit does not store the text you paste here.