Cookie Inspector
Paste one or more Set-Cookie header values (one per line) to parse their attributes and get a security audit.
All processing happens in your browser — nothing is sent to our servers
Hardening Session Cookies
A well-hardened session cookie sets HttpOnly (blocks JavaScript access, mitigating XSS token theft), Secure (HTTPS only), and SameSite=Lax or Strict (mitigates CSRF). Only use SameSite=None for genuine cross-site cookies, and it must be paired with Secure or modern browsers reject it.