π Current Page Cookies (0)
π§ Cookie String Parser
Paste Set-Cookie or Cookie header strings to parse into structured cookie data.
π Examples
βοΈ Cookie Code Generator
Select cookies from the table and generate code in different formats.
JavaScript Code
Set-Cookie Header
Cookie Request Header
Netscape / cURL Format
β Help
What is a Cookie?
A cookie is a small piece of data stored on the user's browser by a website. It's used to maintain login sessions, record preferences, track user behavior, and more. Each cookie has a name, value, and optional attributes (expiry, domain, path, security flags, etc.).
How to view cookies for the current site?
Open the "Cookie Manager" tab. The tool automatically reads all cookies under the current domain and displays them in a table. Click "Refresh" to re-read. Note: HttpOnly cookies cannot be accessed via JavaScript for security reasons.
Cookie Attributes
- Domain β Specifies which domain receives the cookie
- Path β Specifies the URL path the cookie applies to
- Expires/Max-Age β When the cookie expires and is deleted
- Secure β Cookie is only sent over HTTPS
- HttpOnly β Prevents JavaScript access, protects against XSS
- SameSite β Controls cross-site request cookie sending (Strict/Lax/None)
Privacy Notice
All operations are performed locally in your browser. Cookie data is never uploaded to any server. Exported JSON files are for local backup and migration purposes only.