HTTP Header Inspector
See exactly what headers a server returns — caching, redirects, CORS, and a security-headers audit (HSTS, CSP, XFO, and friends).
Frequently asked questions
Why use HEAD instead of GET?
HEAD asks the server for headers only — no body. It's faster and uses less bandwidth. Some servers reject HEAD; the tool falls back to GET when needed.
What do the security checks tell me?
They show whether common defensive headers are present: HSTS, CSP, X-Content-Type-Options, X-Frame-Options, Referrer-Policy, Permissions-Policy. Missing some of these is normal for many sites; missing all of them is a red flag.
Why are private IPs blocked?
Allowing arbitrary requests to private IP ranges (10.x, 192.168.x, 127.x) would let users scan internal services through this tool — a server-side request forgery (SSRF) hazard. We block them at validation time.