Cookie Monster

Cookie / LocalStorage Inspector & Generator β€” learn session/auth mechanics without the googling.
🧠 Offline single-file

Cookie Builder (Set-Cookie)

Generate a Set-Cookie header line (server-side style) and optionally apply it via document.cookie (client-side limitations apply).
Tip: Use the Base64 tab for opaque tokens.
If both are set, many browsers honor Max-Age over Expires.
If SameSite=None, you typically need Secure.
Secure
Only over HTTPS
HttpOnly*
Not readable by JS
Partitioned
CHIPS-style partition
Priority
Low/Medium/High
Heads up: HttpOnly cannot be set from JavaScript. The builder will include it for education, but document.cookie will ignore it. Use server responses to set HttpOnly cookies.

Cookie Parser

Paste either a Set-Cookie line or a raw Cookie header (name=value; name2=value2).
Tip: paste a cookie from DevTools β†’ Application/Storage β†’ Cookies, or from a network response header.
βœ… Copied