cd ../tools

$ Cookie Inspector

View and analyze cookies stored by websites in your browser. Understand what data sites are storing locally.

100% Client-Side - Your cookie data stays in your browser

cookies.sh

$ cat cookie_info.md

Cookie Attributes
  • HttpOnly: Cannot be accessed by JavaScript (security feature)
  • Secure: Only sent over HTTPS connections
  • SameSite: Controls cross-site request behavior
  • Domain: Specifies which domains can access the cookie
  • Path: URL path for which the cookie is valid
Limitations

JavaScript can only read cookies without the HttpOnly flag. Server-set HttpOnly cookies are hidden from client-side scripts for security.

$ test_cookie

Create a test cookie to see how the inspector works:

Privacy Note

Cookies can contain sensitive information. Never share your cookie values with untrusted parties, as they could be used to hijack your sessions.