Skip to main content

Tokenade

Portable browser sessions. Export cookies (and storage) from a real browser into a .tokenade file, then launch or proxy on another machine as that session — with TLS fingerprint matching where it matters.

PyPI version Python versions License: MIT PyPI - Downloads CI Code style: black

pip install tokenade
tokenade plugin sync

Not a Multilogin / AdsPower replacement. Tokenade is session portability (export → package → inject / proxy), not a full anti-detect browser product. Stealth is best-effort and measured — never “undetectable.”


Why Tokenade?

You need… Tokenade
Move a logged-in session to another device Export → .tokenade → launch or proxy
Keep cookies + localStorage (e.g. Telegram Web) Full / ecosystem packaging
Match donor TLS on proxied traffic CDP proxy + curl-cffi
Encrypt session files at rest AES-256-GCM (encrypt / export password)
Extend behavior per site Site-handler plugins (--plugin google-handler)

Self-hosted CLI. No cloud account required for the core loop.


Quick start

1. Install

pip install tokenade
# Python 3.10+

Optional extras: tokenade[tui], tokenade[linux], tokenade[enterprise] (LDAP — experimental).

2. Install site plugins + quit the donor browser

tokenade plugin sync
tokenade export --list-handlers

Fully quit the browser first (see Best practices). A running browser locks the cookie database.

tokenade export --list-profiles

# Hard sites use dedicated handlers that export required storage origins.
tokenade export --browser-name firefox --plugin discord-handler -o discord.tokenade

3. Use the session

Load into CloakBrowser (default automation backend):

tokenade load --file discord.tokenade

Show a browser window when needed:

tokenade load --file discord.tokenade --visible

Proxy (CDP reverse proxy with optional TLS impersonation):

tokenade proxy -s gmail.tokenade
# Open the local GUI / URL printed by the CLI (default port 9222)

Encrypt sensitive jars before sharing or storing:

tokenade encrypt -i discord.tokenade -o discord.tokenade.enc -p "my-secret"
# or: tokenade export ... --encrypt-password '…'

Full command list: tokenade --help and tokenade <command> -h. Start with docs/USER_GUIDE.md; release hardening work is tracked in docs/RELEASE_HARDENING.md.


What works (evidence-based)

Capability Status Notes
Cookie export (Chrome / Firefox / Brave / Edge) Works SQLite extraction; quit browser first
Load + inject via CloakBrowser Works tokenade load --file session.tokenade
Google: Firefox/Brave/Edge donor → non-Chrome target Works Multi-browser & multi-device verified (2026-07-10)
Google → Chrome / Chromium target Fails Account chooser / signed out; avoid Google-owned browsers
CDP proxy + session inject (Gmail, ChatGPT) Works Confirmed logged-in in real runs
localStorage (Discord, Telegram Web) Works Handler-declared storage origins are exported automatically
AES-256-GCM session encryption Works Core encryptor, PBKDF2
Session health scoring Works Heuristic on cookies — not live auth proof
TLS fingerprint matching (curl-cffi) Works Core dependency; use thoughtfully with cf_clearance
Hard bot labs / Cloudflare Turnstile Often fails Do not market as Grade A bypass
Enterprise LDAP / fleet / K8s generators Code present Not production-hardened product surfaces

GitHub/Discord/Reddit from session-only cookies often fail when the donor never wrote durable auth cookies to disk.


Core workflows

┌──────────────┐     export      ┌────────────────┐     launch / proxy
│ Donor browser│ ──────────────► │ .tokenade file │ ──────────────────► Target
│ (logged in)  │  cookies (+LS) │  portable jar  │  clean profile or CDP
└──────────────┘                 └────────────────┘
  1. Export — read cookies and handler-declared storage from a real profile; package as .tokenade.
  2. Transfer — copy the file (optionally encrypted) to another machine or process.
  3. Replayload (CloakBrowser + inject), launch (system browser + inject), or proxy (TLS-matched reverse proxy).

Google recipe (verified): donor not Chrome → target Brave / Edge / Firefoxclean --profile-dir → open the product URL (e.g. mail.google.com), not accounts.google.com after inject. Same jar can run on multiple non-Chrome browsers/devices concurrently. Vivaldi is code-supported but not battle-tested.


Best practices

These matter more than flag trivia. Follow them and most “broken session” reports go away.

Export

  1. Fully quit the donor browser before export. Chrome/Firefox/Brave hold exclusive locks on the cookies SQLite DB. “Quit” means no residual process in Task Manager / Activity Monitor / pgrep. Otherwise you get database is locked or a partial/stale dump.
  2. Export only the domains you need (--domains or a site plugin). Smaller jars are easier to reason about and safer to share.
  3. Prefer a stable donor for high-value accounts. For Google, prefer Firefox / Brave / Edge — not Google Chrome — so cookies are portable.
  4. Use --list-profiles when multiple profiles exist; export the one that is actually logged in.
  5. Encrypt before sharing (encrypt or --encrypt-password). Treat .tokenade like a password dump.
  6. Need storage (Discord, Telegram, some SPAs)? Prefer a site handler. Handlers can declare exact storage origins, so export captures the right localStorage automatically.

Launch & inject

  1. Always use a clean --profile-dir for tests and portability. Injecting into a dirty system profile mixes old cookies, risk signals, and false failures.
  2. Navigate to the product URL, not the IdP bounce page, after inject (e.g. inbox URL, not accounts.google.com).
  3. Google: avoid Chrome-family targets (Chrome, Chromium, Canary). Non-Chrome targets work; Chrome clean profiles still fail in practice.
  4. One CDP port per concurrent browser (--port). Parallel launches need distinct ports and profile dirs.
  5. Site plugins (--plugin discord-handler, --plugin telegram-handler, --plugin generic-handler) keep domain filters and storage rules consistent between export and load.

Proxy & ops

  1. Prefer 127.0.0.1 binding for local proxy; do not expose session proxies to the network without deliberate network design.
  2. TLS fingerprint / --fingerprint: useful for many anti-bot stacks; can interfere with some cf_clearance flows — verify per site.
  3. Refresh instead of re-login when cookies age: tokenade refresh-browser or tokenade accounts refresh for batches.
  4. Health is a hint, not a login proof. tokenade health scores cookie heuristics; confirm with a real page load when it matters.
  5. Do not commit live .tokenade files to git. Add them to .gitignore; rotate if leaked.

Security habits

  1. Session files = full account access for cookie lifetime. Store encrypted; limit filesystem permissions.
  2. Prefer short-lived copies on shared machines; delete profile dirs under /tmp when done.
  3. For automation, pin Python and document the donor browser version you validated against.

Installation (dev)

git clone https://github.com/mihir0209/tokenade.git
cd tokenade
pip install -e ".[dev]"
playwright install chromium --with-deps
pytest   # suite under tokenade/tests/

CloakBrowser (stealth Chromium backend) is a core dependency; its binary downloads on first use when available.


Plugins

Site handlers and other plugins customize domains, critical cookies, and launch behavior without forking core:

tokenade export --list-handlers
tokenade plugin list
tokenade launch -s gmail.tokenade --plugin google-handler --browser brave \
  --profile-dir /tmp/tokenade-brave-clean --visible

Authoring guide: docs/PLUGIN_DEVELOPMENT.md. Examples: examples/plugins/.


Request framework

For automation and orchestration, Tokenade accepts a nested request.json envelope. The core validates structure only; plugin config is dynamic pass-through.

Run operation

Execute plugin operations in order:

{
  "version": "1",
  "operation": "run",
  "plugins": [
    {
      "name": "generic-handler",
      "required": true,
      "roles": {
        "run": {
          "method": "process"
        }
      },
      "config": {
        "session_file": "/path/to/github.tokenade",
        "site": "github"
      }
    }
  ],
  "execution": {
    "stop_on_error": true
  }
}
tokenade run --request request.json

Gateway operation

Start a local multi-session control plane with isolated browser contexts:

{
  "version": "1",
  "operation": "gateway",
  "sessions": {
    "dir": "./sessions",
    "pattern": "*.tokenade"
  },
  "gateway": {
    "host": "127.0.0.1",
    "port": 9222,
    "backend": "cdp"
  },
  "routing": {
    "object": "session",
    "strategy": "health-weighted",
    "switch_interval_seconds": 30,
    "sticky_by": "site",
    "failover": true,
    "drain_existing_tabs": true
  },
  "plugins": []
}
tokenade gateway --request request.json

Gateway API endpoints:

  • GET /status — routing state and session count
  • GET /sessions — sanitized session records (no cookies/storage)
  • POST /route/next — select next session by strategy
  • POST /route/select — set active session by ID/path/site
  • GET /contexts — isolated browser context state
  • POST /contexts/prewarm — prewarm contexts for sessions
  • POST /contexts/drain — close inactive contexts
  • POST /tabs/new — open new tab on active context

Privacy: gateway outputs session metadata only (site, cookie count, health score). Never cookies, tokens, localStorage, or proxy credentials.

Proxy resolve operation

Resolve upstream proxy provider configuration with credential redaction:

{
  "version": "1",
  "operation": "proxy.resolve",
  "plugins": [
    {
      "name": "brightdata",
      "required": true,
      "roles": {
        "proxy_provider": {
          "mode": "sticky",
          "nearest_to_source": true,
          "fallback": "fail"
        }
      },
      "config": {
        "zone": "residential"
      }
    }
  ]
}
tokenade proxy resolve --request request.json

Output is redacted by default. Use --show-secrets to reveal credentials.


Security (short)

  • Treat every .tokenade as credentials.
  • Use encryption at rest; prefer encrypt-on-export for transfers.
  • Default proxy bind is loopback; SSRF protections block private/loopback targets on outbound proxy paths.
  • Report security issues privately when possible; see docs/SECURITY.md.

Documentation

Doc Contents
docs/TUTORIAL_GETTING_STARTED.md Gmail→Brave golden path + Windows
docs/TROUBLESHOOTING.md Locked DB, decrypt errors, proxy issues
docs/SITE_CONFIGS.md Site configs live in plugins (site_config.json)
docs/API.md Programmatic / server API
docs/ARCHITECTURE.md Package layout and design
docs/PLUGIN_DEVELOPMENT.md Plugin API
USE-CASES.md Scenarios and comparisons
docs/CONTRIBUTING.md Contribution guidelines

CLI discovery beats a second manual: tokenade --help.


Project stance

  • Honesty over hype — battle-tested vs “code exists” stay separated in docs and messaging.
  • Session portability first — plugins, stealth, fleet tooling support that core; they are not the product by themselves.
  • Evidence — Google multi-device non-Chrome recipe verified 2026-07-10; see project notes under .agent/ for campaign details (not required for end users).

License

MIT — Copyright (c) 2026 MiHiR

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

tokenade-1.1.76.tar.gz (617.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

tokenade-1.1.76-py3-none-any.whl (681.1 kB view details)

Uploaded Python 3

File details

Details for the file tokenade-1.1.76.tar.gz.

File metadata

  • Download URL: tokenade-1.1.76.tar.gz
  • Upload date:
  • Size: 617.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for tokenade-1.1.76.tar.gz
Algorithm Hash digest
SHA256 0175e6e5a5c94d5e55278b427317a8f8f14ba037ccdbb155c8ea5cd910d72ad1
MD5 71846c0c7635e90b71a9d9382159b948
BLAKE2b-256 a685956ed5aa701f1b46e0ed3ec6c5746a244c88de7bbbc1807cd04b0ae45009

See more details on using hashes here.

File details

Details for the file tokenade-1.1.76-py3-none-any.whl.

File metadata

  • Download URL: tokenade-1.1.76-py3-none-any.whl
  • Upload date:
  • Size: 681.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for tokenade-1.1.76-py3-none-any.whl
Algorithm Hash digest
SHA256 2eaf88284831836ea6f99dad37f4b2789d47d944889da035ecc86a512bc72fe8
MD5 6beaf4baafa83242190c2e538b7f6857
BLAKE2b-256 7d32a4e5e6a1162e1e0d1d06915fb98799ed5bf4117e3f05ae62f962f365c150

See more details on using hashes here.

Release history Release notifications | RSS feed

1.3.0

2 files

1.2.4

2 files

1.2.3

2 files

1.2.2

2 files

1.2.1

2 files

1.2.0

2 files

1.1.94

2 files

1.1.93

2 files

1.1.92

2 files

1.1.91

2 files

1.1.90

2 files

1.1.80

2 files

1.1.77

2 files

This release

1.1.76 This release

2 files

1.1.75

2 files

1.1.74

2 files

1.1.72

2 files

1.1.71

2 files

1.1.70

2 files

1.1.65

1 file

1.1.64

2 files

1.1.63

2 files

1.1.62

2 files

1.1.61

2 files

1.1.60

2 files

1.1.53

2 files

1.1.52

2 files

1.1.51

2 files

1.1.5

2 files

1.1.4

2 files

1.1.3

2 files

1.1.2

2 files

1.1.1

2 files

1.1.0

2 files

1.0.0

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page