🍪 Valid Cookie Generator

Exact format as your example | Google.com style cookies
📋 Example Format (from your input):
{
  "name": "__Secure-STRP",
  "value": "AEEP7gIcTElufz-PYR5KzbFA5smcp3O80q2oaYDTo7hPrFj2B2VrrrDZY_ofF5cgalVATZd3KjteYxtndrhed8qkq_V0uVHWcote",
  "domain": ".google.com",
  "path": "/",
  "expires": 1807897934,
  "httpOnly": false,
  "secure": true,
  "session": false,
  "sameSite": "Strict"
}
📋 VALID COOKIES (5 cookies) - Same format as your example
[
    {
        "name": "SOCS",
        "value": "Itw7IOzF59hV2xIBRHj6mkrheXPLkVVTzTkVIFwuFz78-C3WtLF1gsRS_OBNIXflDwzXLROQUa",
        "domain": ".drive.google.com",
        "path": "\/",
        "expires": 1782146453,
        "httpOnly": false,
        "secure": true,
        "session": false,
        "sameSite": "None"
    },
    {
        "name": "__Secure-3PAPISID",
        "value": "4Tk2lk1Af94Or7nDgxPdpkVjE3jl7e3zX=XSRNyjS==KPtu19HEL7W1pRyaVSPHQeLPStY=40WM8AT_GGkf",
        "domain": ".google.com",
        "path": "\/",
        "expires": 1794409151,
        "httpOnly": true,
        "secure": true,
        "session": false,
        "sameSite": "None"
    },
    {
        "name": "__Secure-3PSID",
        "value": "d0qaEx57iOvNNAC4BZK-ffxb7J6QQMK4f3kuvSHgSc6nJf7wi5stb2jfCrsoBQd3j7xVfPv9M5MQeKgnkmPP6lMbqFHOkg7sP7gsfTZqeK4O7uWedFyl7=SzHC1qX7QgTsnu",
        "domain": ".drive.google.com",
        "path": "\/",
        "expires": 1796411255,
        "httpOnly": true,
        "secure": true,
        "session": false,
        "sameSite": "None"
    },
    {
        "name": "__Secure-3PSID",
        "value": "=E76CCmg_iSUTQjQIWc_pqms-umpmLKwHDOnCZ=XrUjR70ffA=8IbQ1s6w_j3yzvfVJNJjbZddy8bX6=g7mI4f9Mo=ZTpmnWQoWpFXGEiaYqv=HmXHB6=2GSn-R3cCzjle9Dlm4FQR87UvXo4yOwEr",
        "domain": ".accounts.google.com",
        "path": "\/",
        "expires": 1798566604,
        "httpOnly": true,
        "secure": true,
        "session": false,
        "sameSite": "Lax"
    },
    {
        "name": "OTZ",
        "value": "t1leNzG3uxytjor=h2H-3aN9aA1CAJnpheFA_jfXR2zkoKRRHxGBD-bM1y9A4CUXLIdwrUH-nkuqezXxLmlNqKu7m21b4QKI07KQLS5HIE2Vo1gTCA-jBoCg4GkFQpAG1-V9GON3visEScp",
        "domain": ".accounts.google.com",
        "path": "\/",
        "expires": 1801054178,
        "httpOnly": false,
        "secure": true,
        "session": false,
        "sameSite": "Strict"
    }
]
✅ Valid Cookie Format Features:
• Exact same structure as your example JSON
• Includes all fields: name, value, domain, path, expires, httpOnly, secure, session, sameSite
• Real Google cookie names (__Secure-STRP, AEC, NID, __Secure-BUCKET, etc.)
• Long random values like real Google cookies
• Proper expires timestamps (Unix format)
• Correct security flags (Secure, HttpOnly, SameSite)
• Domain: .google.com and related domains
✅ Copied to clipboard!