Secure cookie
- Set-Cookie: session=abc; Secure; HttpOnly; SameSite=Lax; Path=/
web validator
Validate Set-Cookie headers for Secure, HttpOnly, SameSite, and __Host/__Secure conventions.
Requires Secure and HttpOnly on each cookie.
Requires SameSite with valid values (Lax, Strict, None).
Blocks SameSite=None without Secure.
Flags __Host- cookies with Domain or without Path=/ or Secure.
Set-Cookie headers
Paste one or multiple Set-Cookie lines. Keep secrets out; this runs locally.
This Set-Cookie validator checks Secure, HttpOnly, SameSite, and __Host/__Secure rules entirely in your browser.
Use it to harden auth/session cookies from APIs or CDNs without uploading header data.
All validation happens in your browser. No data is sent, logged, or stored.
Header-level validation only; does not check actual authentication logic.