Cookie Viewer
Parse and display all accessible cookies for the current page.
visible cookies
0
Only non-httpOnly cookies are accessible via JavaScript. Cookies with the HttpOnly flag are intentionally hidden from document.cookie.
No accessible cookies found for this page.
Related Tools
FAQ
- Why can't I see all cookies from DevTools here?
- The document.cookie API only exposes cookies that do not have the HttpOnly flag. HttpOnly cookies are intentionally hidden from JavaScript to prevent cross-site scripting (XSS) attacks from stealing session tokens.
- What does the Secure flag mean?
- A Secure cookie is only sent to the server over an encrypted HTTPS connection. Since document.cookie does not expose cookie flags, this tool cannot show whether a cookie is Secure — only its name and value.
- Can I delete cookies from this viewer?
- JavaScript can only delete cookies that are not HttpOnly and that match the same path/domain the cookie was set with. This tool does not support deletion — use your browser's DevTools (Application > Cookies) for full cookie management.
The Cookie Viewer reads document.cookie and parses it into individual name–value pairs, displaying them in a clean table. Note that only non-httpOnly cookies are accessible from JavaScript — cookies set with the HttpOnly flag are intentionally hidden from the document.cookie API for security reasons.