Skip to content

Cookies and logging in

Cookies are what keep you logged in on a site. Move them into a profile and the site sees a user who is already signed in — no password, no SMS code.

That’s how purchased accounts, accounts from colleagues and sessions from another anti-detect browser get into Accovod.

Accovod accepts cookies as a JSON array — the format Cookie-Editor and EditThisCookie export:

[
{
"domain": ".example.com",
"name": "sessionid",
"value": "a1b2c3…",
"path": "/",
"httpOnly": true,
"secure": true,
"expirationDate": 1790000000
}
]

If your cookies are in the Netscape text format (cookies.txt, tab-separated lines), convert them to JSON with our cookie converter: paste the text, copy the result and use it in Accovod.

The httpOnly and secure flags and the expiry are kept. That matters: a site’s session cookies are almost always httpOnly, and a cookie that loses the flag can give the swap away.

  1. In the New Profile form, tick Auth by Cookies.
  2. Paste the cookie JSON into the window and confirm.
  3. Fill in the rest — especially a proxy from the country where the account usually lives — and click Add.

The profile opens already logged in.

Open the profile’s edit form (the pencil on the profile card, or right-click → Edit) and click Cookie Editor.

Button What it does
Get Shows the profile’s current cookies as JSON — this is how you export them.
Set Takes the cookies from the field. They are written to the profile when you click Save in the form.
Clear Immediately deletes all of the profile’s cookies and cache. That logs out of every account in this profile.

Below the editor, LocalStorage shows what sites have saved in local storage. It’s read-only.

After saving, reload the page so the site picks up the new session.

Cookie Editor in the profile edit form

Cookie Editor: Set, Get and Clear buttons and the LocalStorage panel (macOS).

  • The cookies expired. Session cookies don’t live long. Ask for a fresh export.
  • Wrong domain. Cookies for .instagram.com won’t help on facebook.com — you need cookies of that exact site.
  • Different country. A site may drop the session if the account was in Germany yesterday and shows up from Brazil today. Use a proxy from the same country.
  • Wrong format. It has to be a JSON array [ … ]. A name=value; name2=value2 string won’t be accepted; convert a Netscape file with the converter first.