# Technical Documentation: jo-inc/camofox-browser > ℹ️ **Provenance:** Hybrid Fusion: `jo-inc/camofox-browser` (README + 3 In-Tree Chapters) · [CodeWiki Reference](https://codewiki.google/github.com/jo-inc/camofox-browser) · Recency: Active (< 180 days) ## 1. Project Overview & Quickstart (jo-inc/camofox-browser) > [](https://askjo.ai?ref=camofox) > > Built by the team behind [**jo, a personal AI agent**](https://askjo.ai?ref=camofox) that runs half on your Mac, half on a dedicated cloud machine just for you -- with zero maintenance needed. Available on macOS, Telegram, WhatsApp, and email. [Try the beta free ->](https://askjo.ai?ref=camofox) ```bash git clone https://github.com/jo-inc/camofox-browser && cd camofox-browser npm install && npm start # -> http://localhost:9377 ``` --- ## Why AI agents need to browse the real web. Playwright gets blocked. Headless Chrome gets fingerprinted. Stealth plugins become the fingerprint. Camoufox patches Firefox at the **C++ implementation level** - `navigator.hardwareConcurrency`, WebGL renderers, AudioContext, screen geometry, WebRTC - all spoofed before JavaScript ever sees them. No shims, no wrappers, no tells. This project wraps that engine in a REST API built for agents: accessibility snapshots instead of bloated HTML, stable element refs for clicking, and search macros for common sites. ## Features - **C++ Anti-Detection** - bypasses Google, Cloudflare, and most bot detection - **Element Refs** - stable `e1`, `e2`, `e3` identifiers for reliable interaction - **Token-Efficient** - accessibility snapshots are ~90% smaller than raw HTML - **Runs on Anything** - lazy browser launch + idle shutdown keeps memory at ~40MB when idle. Designed to share a box with the rest of your stack -- Raspberry Pi, $5 VPS, shared infra. - **Session Isolation** - separate cookies/storage per user - **Cookie Import** - inject Netscape-format cookie files for authenticated browsing - **File Upload** - attach files from a configured upload directory without a native OS dialog - **Proxy + GeoIP** - route traffic through residential proxies with automatic locale/timezone - **Structured Logging** - JSON log lines with request IDs for production observability - **YouTube Transcripts** - extract captions from any YouTube video via yt-dlp, no API key needed - **Search Macros** - `@google_search`, `@youtube_search`, `@amazon_search`, `@reddit_subreddit`, and 10 more - **Snapshot Screenshots** - include a base64 PNG screenshot alongside the accessibility snapshot - **Large Page Handling** - automatic snapshot truncation with offset-based pagination - **Download Capture** - capture browser downloads and fetch them via API (optional inline base64) - **DOM Image Extraction** - list `` src/alt and optionally return inline data URLs - **Deploy Anywhere** - Docker, Fly.io, Railway - **VNC Interactive Login** - log into sites visually via noVNC, export storage state for agent reuse - **OpenAPI Docs** - auto-generated spec at [`/openapi.json`](http://localhost:9377/openapi.json) and interactive docs at [`/docs`](http://localhost:9377/docs) - **Structured Extract** - `POST /tabs/:tabId/extract` with a JSON Schema that maps properties to snapshot refs via `x-ref` - **Session Tracing** - opt-in per-session Playwright trace capture (screenshots + DOM snapshots + network) with API endpoints to list, fetch, and delete trace zips - **Telemetry** - automatic [anonymized crash/hang telemetry](lib/reporter.js#L28-L290) via GitHub Issues. Identifies which sites cause failures and common failure patterns. Private domains are HMAC-hashed, paths/params stripped, tokens/IPs redacted. Opt-out with `CAMOFOX_CRASH_REPORT_ENABLED=false`. ## Optional Dependencies | Dependency | Purpose | Install | |-----------|---------|---------| | [yt-dlp](https://github.com/yt-dlp/yt-dlp) | YouTube transcript extraction (fast path) | `pip install yt-dlp` or `brew install yt-dlp` | The Docker image includes yt-dlp. For local dev, install it for the `/youtube/transcript` endpoint. Without it, the endpoint falls back to a slower browser-based method. ## Quick Start ### OpenClaw Plugin ```bash openclaw plugins install @askjo/camofox-browser ``` **Tools:** `camofox_create_tab` | `camofox_snapshot` | `camofox_click` | `camofox_type` | `camofox_navigate` | `camofox_scroll` | `camofox_screenshot` | `camofox_close_tab` | `camofox_list_tabs` | `camofox_import_cookies` ### Standalone Run from npm: ```bash npx @askjo/camofox-browser ``` Or from source: ```bash git clone https://github.com/jo-inc/camofox-browser cd camofox-browser npm install npm start # downloads Camoufox on first run (~300MB) ``` Default port is `9377`. See [Environment Variables](#environment-variables) for all options. > **Note:** the postinstall script unsets `PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD` for itself before fetching the Camoufox binary. Without that override, an exported `PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD=1` (common when Playwright is configured to use system Chrome) would silently skip the binary download and crash the server at runtime. > > **External Camoufox executable:** set `CAMOUFOX_EXECUTABLE=/path/to/camoufox-bin` before `npm install` and when starting the server to skip the bundled download and launch that executable. Compatibility aliases are `CAMOUFOX_EXECUTABLE_PATH` and `CAMOFOX_EXECUTABLE_PATH`. This is useful for NixOS paths such as `/nix/store/.../camoufox-bin`; the executable must come from a Camoufox bundle that includes `properties.json`, `version.json`, and `fontconfig/`. > > **Air-gapped or custom binary management:** prefer `CAMOUFOX_EXECUTABLE` when you already have a Camoufox bundle. Otherwise disable the auto-fetch with `npm install --ignore-scripts` (skips lifecycle scripts for *every* dependency -- bluntest option) or, more surgically, `npm install --omit=optional` plus a manual `npx camoufox-js fetch` step against your mirror. Note that `PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD=1 npm install` no longer skips the Camoufox download (the postinstall sanitizes the env locally); use `--ignore-scripts` or `CAMOUFOX_EXECUTABLE` for that. ### Docker The included `Makefile` auto-detects your CPU architecture and pre-downloads Camoufox + yt-dlp binaries outside the Docker build, so rebuilds are fast (~30s vs ~3min). ```bash # Build and start (auto-detects arch: aarch64 on M1/M2, x86_64 on Intel) make up # Stop and remove the container make down # Force a clean rebuild (e.g. after upgrading VERSION/RELEASE) make reset # Just download binaries (without building) make fetch # Override arch or version explicitly make up ARCH=x86_64 make up VERSION=135.0.1 RELEASE=beta.24 ``` #### Windows On Windows, `make` is not available. Use the included `build.ps1` PowerShell script instead: ```powershell # Build and start .\build.ps1 up # Stop and remove the container .\build.ps1 down # Build image only .\build.ps1 build # Force a clean rebuild .\build.ps1 reset # Download binaries only (without building) .\build.ps1 fetch # Override architecture .\build.ps1 up -Arch x86_64 .\build.ps1 up -Arch aarch64 ``` > **Note:** PowerShell 7+ (`pwsh`) is recommended but `powershell.exe` (Windows PowerShell 5.1) also works. The script requires Docker Desktop for Windows with the WSL2 backend. > > **Line endings:** This project includes a `.gitattributes` file that forces Unix (`LF`) line endings for `.sh` files. If you've already cloned the repo and get `sh: not found` or `set: Illegal option -` errors during `docker build`, run: > ```powershell > Get-ChildItem -Recurse *.sh | ForEach-Object { (Get-Content $_) -join "`n" + "`n" | Set-Content $_ -NoNewline } > ``` > This converts shell scripts to LF line endings. Future clones will handle this automatically thanks to `.gitattributes`. > **WARNING: Do not run `docker build` directly.** The Dockerfile uses bind mounts to pull pre-downloaded binaries from `dist/`. Always use `make up` (or `make fetch` then `make build`) -- it downloads the binaries first. ### Fly.io For Fly.io or other remote CI, you'll need a Dockerfile that downloads binaries at build time instead of using bind mounts. ### Railway A `railway.toml` is included. It uses `Dockerfile.ci` (which downloads binaries at build time) and maps Railway's `PORT` env var to `CAMOFOX_PORT` automatically. ```bash # Install Railway CLI, then: railway link railway up ``` Set secrets via the Railway dashboard or CLI: ```bash railway variables set CAMOFOX_API_KEY="your-generated-key" ``` ## Usage ### Cookie Import Import cookies from your browser into Camoufox to skip interactive login on sites like LinkedIn, Amazon, etc. #### Setup **1. Generate a secret key:** ```bash # macOS / Linux openssl rand -hex 32 ``` **2. Set the environment variable before starting OpenClaw:** ```bash export CAMOFOX_API_KEY="your-generated-key" openclaw start ``` The same key is used by both the plugin (to authenticate requests) and the server (to verify them). Both run from the same environment -- set it once. > **Why an env var?** The key is a secret. Plugin config in `openclaw.json` is stored in plaintext, so secrets don't belong there. Set `CAMOFOX_API_KEY` in your shell profile, systemd unit, Docker env, or Fly.io secrets. > **Cookie import is disabled by default.** If `CAMOFOX_API_KEY` is not set, the server rejects all cookie requests with 403. **3. Export cookies from your browser:** Install a browser extension that exports Netscape-format cookie files (e.g., "cookies.txt" for Chrome/Firefox). Export the cookies for the site you want to authenticate. **4. Place the cookie file:** ```bash mkdir -p ~/.camofox/cookies cp ~/Downloads/linkedin_cookies.txt ~/.camofox/cookies/linkedin.txt ``` The default directory is `~/.camofox/cookies/`. Override with `CAMOFOX_COOKIES_DIR`. **5. Ask your agent to import them:** > Import my LinkedIn cookies from linkedin.txt The agent calls `camofox_import_cookies` -> reads the file -> POSTs to the server with the Bearer token -> cookies are injected into the browser session. Subsequent `camofox_create_tab` calls to linkedin.com will be authenticated. #### How it works ``` ~/.camofox/cookies/linkedin.txt (Netscape format, on disk) | v camofox_import_cookies tool (parses file, filters by domain) | v POST /sessions/:userId/cookies | Authorization: Bearer | Body: { cookies: [Playwright cookie objects] } v camofox server (validates, sanitizes, injects) | v context.addCookies(...) | Camoufox browser session (authenticated browsing) ``` - `cookiesPath` is resolved relative to the cookies directory -- path traversal outside it is blocked - Max 500 cookies per request, 5MB file size limit - Cookie objects are sanitized to an allowlist of Playwright fields ### Session Persistence By default, camofox persists each user's cookies and localStorage to `~/.camofox/profiles/`. Sessions survive browser restarts -- log in once (via cookies or VNC), and subsequent sessions restore the authenticated state automatically. ``` ~/.camofox/ |-- cookies/ # Bootstrap cookie files (Netscape format) \-- profiles/ # Persisted session state (auto-managed) \-- / \-- storage_state.json ``` Override the directory with `CAMOFOX_PROFILE_DIR` or set `"profileDir"` in the persistence plugin config. To disable persistence, set `"persistence": { "enabled": false }` in `camofox.config.json`. By default, storage state contains cookies and localStorage only. To also persist IndexedDB, set `"indexedDB": true` in the persistence plugin config. This captures all serializable IndexedDB records—not only authentication data—and may make snapshots significantly larger and checkpoints slower. ### Session Tracing Capture a Playwright trace of every action in a session: page screenshots, DOM snapshots, network requests, and console output. Output is a single `.zip` file you can open in Playwright's built-in Trace Viewer. Opt-in per session by passing `trace: true` when opening the first tab: ```bash curl -X POST http://localhost:9377/tabs \ -H 'Content-Type: application/json' \ -d '{"userId":"agent1","sessionKey":"task1","url":"https://example.com","trace":true}' ``` The trace is written when the session closes. Close the session to flush it, then list, fetch, and view: ```bash # Close the session to flush the trace curl -X DELETE http://localhost:9377/sessions/agent1 # List trace files curl http://localhost:9377/sessions/agent1/traces # {"traces":[{"filename":"trace-2026-04-18T04-05-00-...zip","sizeBytes":42810,"createdAt":...}]} # Download (Content-Type: application/zip) curl http://localhost:9377/sessions/agent1/traces/trace-2026-04-18T04-05-00-abc.zip > session.zip # View it in Playwright's Trace Viewer npx playwright show-trace session.zip # Delete curl -X DELETE http://localhost:9377/sessions/agent1/traces/trace-2026-04-18T04-05-00-abc.zip ``` Why traces instead of video: Camoufox is Firefox-based, and Playwright's `recordVideo` is Chromium-only. Traces work on Firefox and give you more than video (network + DOM + console + screenshots). Tracing cannot be toggled on an existing session. `DELETE /sessions/:userId` first if you need to change the flag. Storage defaults to `~/.camofox/traces//` and is swept on server startup: - `CAMOFOX_TRACES_DIR` - base directory (default: `~/.camofox/traces`) - `CAMOFOX_TRACES_MAX_BYTES` - max size per trace, removed at next startup if exceeded (default: 50MB) - `CAMOFOX_TRACES_TTL_HOURS` - traces older than this are removed at next startup (default: 24) #### Standalone server usage ```bash curl -X POST http://localhost:9377/sessions/agent1/cookies \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_CAMOFOX_API_KEY' \ -d '{"cookies":[{"name":"foo","value":"bar","domain":"example.com","path":"/","expires":-1,"httpOnly":false,"secure":false}]}' ``` #### Docker / Fly.io / Railway ```bash docker run -p 9377:9377 \ -e CAMOFOX_API_KEY="your-generated-key" \ -v ~/.camofox/cookies:/home/node/.camofox/cookies:ro \ camofox-browser ``` For Fly.io: ```bash fly secrets set CAMOFOX_API_KEY="your-generated-key" ``` For Railway: ```bash railway variables set CAMOFOX_API_KEY="your-generated-key" ``` ### Proxy + GeoIP Route all browser traffic through a proxy with automatic locale, timezone, and geolocation derived from the proxy's IP address via Camoufox's built-in GeoIP. **Simple proxy (single endpoint):** ```bash export PROXY_HOST=166.88.179.132 export PROXY_PORT=46040 export PROXY_USERNAME=myuser export PROXY_PASSWORD=mypass npm start ``` **Backconnect proxy (rotating sticky sessions):** For providers like Decodo, Bright Data, or Oxylabs that offer a single gateway endpoint with session-based sticky IPs: ```bash export PROXY_STRATEGY=backconnect export PROXY_BACKCONNECT_HOST=gate.provider.com export PROXY_BACKCONNECT_PORT=7000 export PROXY_USERNAME=myuser export PROXY_PASSWORD=mypass npm start ``` Each browser context gets a unique sticky session, so different users get different IP addresses. Sessions rotate automatically on proxy errors or Google blocks. Or in Docker: ```bash docker run -p 9377:9377 \ -e PROXY_HOST=166.88.179.132 \ -e PROXY_PORT=46040 \ -e PROXY_USERNAME=myuser \ -e PROXY_PASSWORD=mypass \ camofox-browser ``` When a proxy is configured: - All traffic routes through the proxy - Camoufox's GeoIP automatically sets `locale`, `timezone`, and `geolocation` to match the proxy's exit IP - Browser fingerprint (language, timezone, coordinates) is consistent with the proxy location - Without a proxy, defaults to `en-US`, `America/Los_Angeles`, San Francisco coordinates ### Telemetry Browser automation fails in ways that are hard to predict -- Cloudflare challenges, site redesigns breaking selectors, redirect loops, dialog storms, renderer crashes. The scope is wide and the failure modes are diverse. Without telemetry, the only signal is "it didn't work." Telemetry gives us structured data on *which sites fail*, *how they fail*, and *how often*, so we can prioritize fixes for the patterns that actually affect users. It files GitHub Issues automatically when: - **Uncaught exceptions** crash the process - **Event loop stalls** exceed 5 seconds (watchdog detection) - **Frustration patterns** -- 3+ consecutive failures (timeout, dead context, navigation abort) on the same tab Each report includes the failure type, stack trace, tab health counters (HTTP status histogram, console errors, request failures, redirect depth), and the target URL -- all anonymized. #### How it works Telemetry is sent to a lightweight Cloudflare Worker endpoint at [`https://camofox-telemetry.askjo.workers.dev`](https://camofox-telemetry.askjo.workers.dev/health). The endpoint holds the GitHub App credentials as environment secrets -- **no secrets are shipped in this package**. ``` lib/reporter.js (client, no secrets) | anonymize -> POST https://camofox-telemetry.askjo.workers.dev/report v Cloudflare Worker (holds GitHub App key) | validate -> rate-limit -> dedup -> create GitHub Issue v GitHub Issue created ``` The endpoint source code is in this repo at [`workers/crash-reporter/index.ts`](workers/crash-reporter/index.ts). #### Verification You don't have to trust us -- verify what the live endpoint is running: ```bash # 1. Ask the endpoint what code it's running curl https://camofox-telemetry.askjo.workers.dev/source # -> { "commit": "abc1234", "sha256": "e3b0c44...", "source": "https://github.com/..." } # 2. Compare the sha256 against the source in this repo sha256sum workers/crash-reporter/index.ts # 3. Check the commit matches what CI deployed # https://github.com/jo-inc/camofox-browser/actions/workflows/telemetry-deploy.yml git log --oneline workers/crash-reporter/index.ts | head -1 ``` If the hashes don't match, the endpoint is running different code than what's in the repo. The deploy workflow ([`.github/workflows/telemetry-deploy.yml`](.github/workflows/telemetry-deploy.yml)) injects the commit and source hash at deploy time -- every deploy is auditable in [GitHub Actions](https://github.com/jo-inc/camofox-browser/actions/workflows/telemetry-deploy.yml). Or skip verification entirely: `CAMOFOX_CRASH_REPORT_ENABLED=false` disables all telemetry, or point to [your own endpoint](#self-hosted-telemetry-endpoint) with `CAMOFOX_CRASH_REPORT_URL`. #### Privacy All reported data goes through paranoid anonymization ([`lib/reporter.js` L28-290](lib/reporter.js#L28-L290)) before leaving the process: - **URLs** -- well-known public domains (Google, Amazon, Reddit, Cloudflare, etc.) are shown verbatim so we can identify which sites cause problems. Private/unknown domains are replaced with a stable HMAC hash (`site-a1b2c3d4`) -- same hash across reports for correlation, but not reversible to the original domain. Path segments become `*/*/*` (depth only). Query params become `?[3]` (count only). No keys, values, or path content is ever included. - **File paths** -> stripped to filename only (`/server.js`) - **Tokens, secrets, API keys** -> `` - **IPs, emails, env vars** -> redacted - **Docker/Fly machine IDs** -> `` - **Tab health** -- pure counters (crash count, error count, status code histogram). No page content, no URLs, no user data. Duplicate issues are detected by stack signature and get a `+1` comment instead of a new issue. ```bash # Disable telemetry export CAMOFOX_CRASH_REPORT_ENABLED=false # Point to your own endpoint (see below) export CAMOFOX_CRASH_REPORT_URL=https://your-endpoint.example.com/report # Adjust rate limit (default: 10 per hour) export CAMOFOX_CRASH_REPORT_RATE_LIMIT=5 ``` #### Self-hosted telemetry endpoint To file telemetry reports in your own GitHub repo instead of `jo-inc/camofox-browser`: 1. **Create a GitHub App** -- [Settings -> Developer settings -> GitHub Apps -> New](https://github.com/settings/apps/new) - Permissions: **Repository -> Issues -> Read & Write** - Uncheck **Webhook -> Active** (not needed) - Click **Generate a key** -- downloads a `.pem` file - Install the app on your target repo (Install App -> select repo) - Note your **App ID** (number on the app's General page) and **Installation ID** (from the URL after installing: `github.com/settings/installations/{id}`) 2. **Deploy the endpoint** -- clone this repo and deploy the worker: ```bash cd workers/crash-reporter # Edit wrangler.toml: set account_id to your Cloudflare account ID npx wrangler deploy ``` The worker is a single TypeScript file with zero npm dependencies. It also runs on Deno, Bun, or any runtime with the Web Crypto API. 3. **Set worker secrets:** ```bash cd workers/crash-reporter echo "YOUR_APP_ID" | npx wrangler secret put GH_APP_ID echo "YOUR_INSTALL_ID" | npx wrangler secret put GH_INSTALL_ID # Key must be PKCS#8 DER base64 (not raw PEM) openssl pkcs8 -topk8 -inform PEM -outform DER -nocrypt -in your-app.pem | \ base64 | tr -d '\n' | npx wrangler secret put GH_PRIVATE_KEY # File issues in your repo echo "your-org/your-repo" | npx wrangler secret put GH_REPO ``` 4. **Point camofox-browser to your endpoint:** ```bash export CAMOFOX_CRASH_REPORT_URL=https://your-worker.your-subdomain.workers.dev/report ``` 5. **Verify:** ```bash curl https://your-worker.your-subdomain.workers.dev/health # -> {"status":"ok"} ``` ### Structured Logging All log output is JSON (one object per line) for easy parsing by log aggregators: ```json {"ts":"2026-02-11T23:45:01.234Z","level":"info","msg":"req","reqId":"a1b2c3d4","method":"POST","path":"/tabs","userId":"agent1"} {"ts":"2026-02-11T23:45:01.567Z","level":"info","msg":"res","reqId":"a1b2c3d4","status":200,"ms":333} ``` Health check requests (`/health`) are excluded from request logging to reduce noise. ### Basic Browsing ```bash # Create a tab curl -X POST http://localhost:9377/tabs \ -H 'Content-Type: application/json' \ -d '{"userId": "agent1", "sessionKey": "task1", "url": "https://example.com"}' # Get accessibility snapshot with element refs curl "http://localhost:9377/tabs/TAB_ID/snapshot?userId=agent1" # -> { "snapshot": "[button e1] Submit [link e2] Learn more", ... } # Click by ref curl -X POST http://localhost:9377/tabs/TAB_ID/click \ -H 'Content-Type: application/json' \ -d '{"userId": "agent1", "ref": "e1"}' # Type into an element curl -X POST http://localhost:9377/tabs/TAB_ID/type \ -H 'Content-Type: application/json' \ -d '{"userId": "agent1", "ref": "e2", "text": "hello", "pressEnter": true}' # Navigate with a search macro curl -X POST http://localhost:9377/tabs/TAB_ID/navigate \ -H 'Content-Type: application/json' \ -d '{"userId": "agent1", "macro": "@google_search", "query": "best coffee beans"}' ``` ## API ### Tab Lifecycle | Method | Endpoint | Description | |--------|----------|-------------| | `POST` | `/tabs` | Create tab with initial URL | | `GET` | `/tabs?userId=X` | List open tabs | | `GET` | `/tabs/:id/stats` | Tab stats (tool calls, visited URLs) | | `DELETE` | `/tabs/:id` | Close tab | | `DELETE` | `/tabs/group/:groupId` | Close all tabs in a group | | `DELETE` | `/sessions/:userId` | Close all tabs for a user | ### Page Interaction | Method | Endpoint | Description | |--------|----------|-------------| | `GET` | `/tabs/:id/snapshot` | Accessibility snapshot with element refs. Query params: `includeScreenshot=true` (add base64 PNG), `offset=N` (paginate large snapshots) | | `POST` | `/tabs/:id/click` | Click element by ref or CSS selector | | `POST` | `/tabs/:id/type` | Type text into element | | `POST` | `/tabs/:id/press` | Press a keyboard key | | `POST` | `/tabs/:id/scroll` | Scroll page (up/down/left/right) | | `POST` | `/tabs/:id/navigate` | Navigate to URL or search macro | | `POST` | `/tabs/:id/wait` | Wait for selector or timeout | | `GET` | `/tabs/:id/links` | Extract all links on page | | `GET` | `/tabs/:id/images` | List `` elements. Query params: `includeData=true` (return inline data URLs), `maxBytes=N`, `limit=N` | | `GET` | `/tabs/:id/downloads` | List captured downloads. Query params: `includeData=true` (base64 file data), `consume=true` (clear after read), `maxBytes=N` | | `GET` | `/tabs/:id/screenshot` | Take screenshot | | `POST` | `/tabs/:id/back` | Go back | | `POST` | `/tabs/:id/forward` | Go forward | | `POST` | `/tabs/:id/refresh` | Refresh page | ### YouTube Transcript | Method | Endpoint | Description | |--------|----------|-------------| | `POST` | `/youtube/transcript` | Extract captions from a YouTube video | ```bash curl -X POST http://localhost:9377/youtube/transcript \ -H 'Content-Type: application/json' \ -d '{"url": "https://www.youtube.com/watch?v=dQw4w9WgXcQ", "languages": ["en"]}' # -> { "status": "ok", "transcript": "[00:18] [music] We're no strangers to love [music]\n...", "video_title": "...", "total_words": 548 } ``` Uses [yt-dlp](https://github.com/yt-dlp/yt-dlp) when available (fast, no browser needed). Falls back to a browser-based intercept method if yt-dlp is not installed -- this is slower and less reliable due to YouTube ad pre-rolls. ### Server | Method | Endpoint | Description | |--------|----------|-------------| | `GET` | `/health` | Health check | | `POST` | `/start` | Start browser engine | | `POST` | `/stop` | Stop browser engine | ### Sessions | Method | Endpoint | Description | |--------|----------|-------------| | `POST` | `/sessions/:userId/cookies` | Add cookies to a user session (Playwright cookie objects) | | `GET` | `/sessions/:userId/storage_state` | Export persisted browser storage ([VNC plugin](plugins/vnc/)) | | `DELETE` | `/sessions/:userId/storage_state` | Reset the live session and delete its persisted browser storage ([persistence plugin](plugins/persistence/)) | ## Search Macros `@google_search` | `@youtube_search` | `@amazon_search` | `@reddit_search` | `@reddit_subreddit` | `@wikipedia_search` | `@twitter_search` | `@yelp_search` | `@spotify_search` | `@netflix_search` | `@linkedin_search` | `@instagram_search` | `@tiktok_search` | `@twitch_search` Reddit macros return JSON directly (no HTML parsing needed): - `@reddit_search` - search all of Reddit, returns JSON with 25 results - `@reddit_subreddit` - browse a subreddit (e.g., query `"programming"` -> `/r/programming.json`) ## Browser Configuration Browser behavior can be tuned in `camofox.config.json`: ```json { "newPageTimeoutMs": 10000 } ``` `newPageTimeoutMs` controls how long tab creation waits for Firefox to create a page. If the context is unresponsive, Camofox replaces only that user's context and retries once. The default is 10 seconds. ## Environment Variables | Variable | Description | Default | |----------|-------------|---------| | `CAMOFOX_PORT` | Server port | `9377` | | `PORT` | Server port (fallback, for platforms like Fly.io, Railway) | `9377` | | `CAMOFOX_BIND_HOST` | Optional server bind host. Set to `127.0.0.1` for loopback-only access or `0.0.0.0` for IPv4 on all interfaces. When unset, Node uses its default all-interface binding. | - | | `CAMOFOX_API_KEY` | Enable cookie import endpoint (disabled if unset) | - | | `CAMOFOX_ADMIN_KEY` | Required for `POST /stop` | - | | `CAMOFOX_ACCESS_KEY` | If set, all routes (except `/health`, cookie import, and `/stop`) require `Authorization: Bearer `. Lets you safely expose the server beyond loopback. | - | | `CAMOFOX_EVALUATE_MAX_BODY_SIZE` | Max JSON request body size for `POST /tabs/:tabId/evaluate`; other JSON routes remain limited to `100kb`. | `1mb` | | `CAMOUFOX_EXECUTABLE` | External Camoufox executable to use instead of downloading/launching the bundled cache. Must point to a Camoufox bundle with sibling resources. | - | | `CAMOUFOX_EXECUTABLE_PATH` | Compatibility alias for `CAMOUFOX_EXECUTABLE` | - | | `CAMOFOX_EXECUTABLE_PATH` | Compatibility alias for `CAMOUFOX_EXECUTABLE` | - | | `CAMOFOX_DISABLE_DEFAULT_ADDONS` | Set to `1`/`true` to skip downloading and launching the default uBlock Origin (UBO) addon. Useful for deployments where the addons.mozilla.org download is unreliable or unwanted (a failed download otherwise leaves a broken addon cache that blocks startup). | `0` | | `CAMOFOX_COOKIES_DIR` | Directory for cookie files | `~/.camofox/cookies` | | `CAMOFOX_UPLOADS_DIR` | Directory allowed for `POST /tabs/:tabId/upload` file attachments. Paths outside it, including symlink escapes, are rejected. | `~/.camofox/uploads` | | `CAMOFOX_PROFILE_DIR` | Directory for persisted session profiles | `~/.camofox/profiles` | | `CAMOFOX_TRACES_DIR` | Directory for session trace zips | `~/.camofox/traces` | | `CAMOFOX_TRACES_MAX_BYTES` | Max size per trace, removed on next startup if exceeded | `52428800` (50MB) | | `CAMOFOX_TRACES_TTL_HOURS` | Traces older than this are swept on startup | `24` | | `MAX_SESSIONS` | Max concurrent browser sessions | `50` | | `MAX_TABS_PER_SESSION` | Max tabs per session | `10` | | `SESSION_TIMEOUT_MS` | Session inactivity timeout | `1800000` (30min) | | `BROWSER_IDLE_TIMEOUT_MS` | Kill browser when idle (0 = never) | `300000` (5min) | | `HANDLER_TIMEOUT_MS` | Max time for any handler | `30000` (30s) | | `MAX_CONCURRENT_PER_USER` | Concurrent request cap per user | `3` | | `MAX_OLD_SPACE_SIZE` | Node.js V8 heap limit (MB) | `128` | | `PROXY_STRATEGY` | Proxy mode: `backconnect` (rotating sticky sessions) or blank (single endpoint) | - | | `PROXY_PROVIDER` | Provider name for session format (e.g. `decodo`) | `decodo` | | `PROXY_HOST` | Proxy hostname or IP (simple mode) | - | | `PROXY_PORT` | Proxy port (simple mode) | - | | `PROXY_USERNAME` | Proxy auth username | - | | `PROXY_PASSWORD` | Proxy auth password | - | | `PROXY_BACKCONNECT_HOST` | Backconnect gateway hostname | - | | `PROXY_BACKCONNECT_PORT` | Backconnect gateway port | `7000` | | `PROXY_COUNTRY` | Target country for proxy geo-targeting | - | | `PROXY_STATE` | Target state/region for proxy geo-targeting | - | | `TAB_INACTIVITY_MS` | Close tabs idle longer than this | `300000` (5min) | | `CAMOFOX_CRASH_REPORT_ENABLED` | Enable anonymized crash/hang telemetry (`false` to disable) | `true` | | `CAMOFOX_CRASH_REPORT_URL` | Telemetry endpoint ([self-hosted endpoint](#self-hosted-telemetry-endpoint)) | `https://camofox-telemetry.askjo.workers.dev/report` | | `CAMOFOX_CRASH_REPORT_REPO` | GitHub repo for telemetry issues | `jo-inc/camofox-browser` | | `CAMOFOX_CRASH_REPORT_RATE_LIMIT` | Max telemetry reports per hour | `10` | | `ENABLE_VNC` | Enable VNC plugin for interactive browser access (`1`) | - | | `VNC_PASSWORD` | Password for VNC access (recommended in production) | - | | `NOVNC_PORT` | noVNC web UI port | `6080` | ## Architecture ``` Browser Instance (Camoufox) \-- User Session (BrowserContext) - isolated cookies/storage |-- Tab Group (sessionKey: "conv1") | |-- Tab (google.com) | \-- Tab (github.com) \-- Tab Group (sessionKey: "conv2") \-- Tab (amazon.com) ``` Sessions auto-expire after 30 minutes of inactivity. The browser itself shuts down after 5 minutes with no active sessions, and relaunches on the next request. When a session's tab limit is reached, the oldest/least-used tab is automatically recycled instead of returning an error -- so long-running agent sessions don't hit dead ends. ## Security Model This section documents the security boundaries of camofox-browser for users and automated security reviewers. ### Code isolation All `process.env` reads are centralized in `lib/config.js`. All `child_process` usage is in `lib/launcher.js` (server subprocess) and `plugins/youtube/youtube.js` (yt-dlp). The main `server.js` has route handlers but zero `process.env` reads and zero `child_process` imports. No single file combines environment/credential access with network sends. ### No embedded secrets Zero credentials, private keys, API tokens, or signing keys ship in this package. All secrets are provided at runtime via environment variables (`CAMOFOX_API_KEY`, `CAMOFOX_ACCESS_KEY`) or are Cloudflare Worker environment secrets (telemetry endpoint GitHub App key). ### Cookie import is disabled by default The cookie import endpoint (`POST /sessions/:userId/cookies`) is gated behind `CAMOFOX_API_KEY`. If this env var is not set, the server rejects all cookie import requests with HTTP 403. Cookie files are read from a sandboxed directory (`~/.camofox/cookies/`) with path traversal protection -- attempts to escape the directory are blocked. Max 500 cookies per request, 5MB file size limit. ### Access control `CAMOFOX_ACCESS_KEY` provides global bearer token authentication for all routes (except `/health`). When set, every request must include `Authorization: Bearer `. Recommended for any deployment beyond localhost. ### Binary download The Camoufox browser engine (~300MB) is downloaded at `npm install` time by [`camoufox-js`](https://www.npmjs.com/package/camoufox-js), an npm package maintained by the [Camoufox project](https://camoufox.com). It downloads from [official GitHub releases](https://github.com/nicedayzhu/camoufox/releases) with integrity verification handled by `camoufox-js`. No custom download URLs, no URL shorteners, no raw IP addresses. ### Telemetry Anonymized crash/hang telemetry is sent to a Cloudflare Worker endpoint. The endpoint source is [in this repo](workers/crash-reporter/index.ts) and auditable. Verification: `GET /source` on the endpoint returns the deployed commit hash and sha256 so you can compare against the repo. The reporter ([`lib/reporter.js` L28-290](lib/reporter.js#L28-L290)) applies paranoid anonymization: private domains are HMAC-hashed (not reversible), paths are stripped, tokens/IPs/emails are redacted. No page content, cookies, or user data is ever sent. Disable with `CAMOFOX_CRASH_REPORT_ENABLED=false` or point to your own endpoint with `CAMOFOX_CRASH_REPORT_URL`. ### Session persistence The persistence plugin saves cookies and localStorage to `~/.camofox/profiles//` so authenticated sessions survive browser restarts. UserIds are hashed for directory names. Disable via `camofox.config.json` by removing `persistence` from the plugins array. ### Network access Outbound connections are made to: (1) URLs the agent navigates to (core functionality), (2) the telemetry endpoint (anonymized, opt-out available). Inbound: the REST API on port 9377, bound to all interfaces by default or to `CAMOFOX_BIND_HOST` when configured, optionally protected by `CAMOFOX_ACCESS_KEY`. ### Subprocess usage Two subprocesses may be spawned: (1) the Camoufox browser engine (core functionality, `lib/launcher.js`), (2) yt-dlp for YouTube transcript extraction (optional, `plugins/youtube/youtube.js`). Both are isolated in dedicated files separate from route handlers. ## Testing ```bash npm test # all tests npm run test:e2e # e2e tests only npm run test:live # live site tests (Google, macros) npm run test:debug # with server output ``` ## npm ```bash npm install @askjo/camofox-browser ``` ## Credits - [Camoufox](https://camoufox.com) - Firefox-based browser with C++ anti-detection - [Donate to Camoufox's original creator daijro](https://camoufox.com/about/) - [OpenClaw](https://openclaw.ai) - Open-source AI agent framework ## Crypto Scam Warning Sketchy people are doing sketchy things with crypto tokens named "Camofox" now that this project is getting attention. **Camofox is not a crypto project and will never be one.** Any token, coin, or NFT using the Camofox name has nothing to do with us. ## License MIT ## 2. In-Tree Documentation Chapters (jo-inc/camofox-browser) ## File: README.md > [](https://askjo.ai?ref=camofox) > > Built by the team behind [**jo, a personal AI agent**](https://askjo.ai?ref=camofox) that runs half on your Mac, half on a dedicated cloud machine just for you -- with zero maintenance needed. Available on macOS, Telegram, WhatsApp, and email. [Try the beta free ->](https://askjo.ai?ref=camofox) ```bash git clone https://github.com/jo-inc/camofox-browser && cd camofox-browser npm install && npm start # -> http://localhost:9377 ``` --- ## Why AI agents need to browse the real web. Playwright gets blocked. Headless Chrome gets fingerprinted. Stealth plugins become the fingerprint. Camoufox patches Firefox at the **C++ implementation level** - `navigator.hardwareConcurrency`, WebGL renderers, AudioContext, screen geometry, WebRTC - all spoofed before JavaScript ever sees them. No shims, no wrappers, no tells. This project wraps that engine in a REST API built for agents: accessibility snapshots instead of bloated HTML, stable element refs for clicking, and search macros for common sites. ## Features - **C++ Anti-Detection** - bypasses Google, Cloudflare, and most bot detection - **Element Refs** - stable `e1`, `e2`, `e3` identifiers for reliable interaction - **Token-Efficient** - accessibility snapshots are ~90% smaller than raw HTML - **Runs on Anything** - lazy browser launch + idle shutdown keeps memory at ~40MB when idle. Designed to share a box with the rest of your stack -- Raspberry Pi, $5 VPS, shared infra. - **Session Isolation** - separate cookies/storage per user - **Cookie Import** - inject Netscape-format cookie files for authenticated browsing - **File Upload** - attach files from a configured upload directory without a native OS dialog - **Proxy + GeoIP** - route traffic through residential proxies with automatic locale/timezone - **Structured Logging** - JSON log lines with request IDs for production observability - **YouTube Transcripts** - extract captions from any YouTube video via yt-dlp, no API key needed - **Search Macros** - `@google_search`, `@youtube_search`, `@amazon_search`, `@reddit_subreddit`, and 10 more - **Snapshot Screenshots** - include a base64 PNG screenshot alongside the accessibility snapshot - **Large Page Handling** - automatic snapshot truncation with offset-based pagination - **Download Capture** - capture browser downloads and fetch them via API (optional inline base64) - **DOM Image Extraction** - list `` src/alt and optionally return inline data URLs - **Deploy Anywhere** - Docker, Fly.io, Railway - **VNC Interactive Login** - log into sites visually via noVNC, export storage state for agent reuse - **OpenAPI Docs** - auto-generated spec at [`/openapi.json`](http://localhost:9377/openapi.json) and interactive docs at [`/docs`](http://localhost:9377/docs) - **Structured Extract** - `POST /tabs/:tabId/extract` with a JSON Schema that maps properties to snapshot refs via `x-ref` - **Session Tracing** - opt-in per-session Playwright trace capture (screenshots + DOM snapshots + network) with API endpoints to list, fetch, and delete trace zips - **Telemetry** - automatic [anonymized crash/hang telemetry](lib/reporter.js#L28-L290) via GitHub Issues. Identifies which sites cause failures and common failure patterns. Private domains are HMAC-hashed, paths/params stripped, tokens/IPs redacted. Opt-out with `CAMOFOX_CRASH_REPORT_ENABLED=false`. ## Optional Dependencies | Dependency | Purpose | Install | |-----------|---------|---------| | [yt-dlp](https://github.com/yt-dlp/yt-dlp) | YouTube transcript extraction (fast path) | `pip install yt-dlp` or `brew install yt-dlp` | The Docker image includes yt-dlp. For local dev, install it for the `/youtube/transcript` endpoint. Without it, the endpoint falls back to a slower browser-based method. ## Quick Start ### OpenClaw Plugin ```bash openclaw plugins install @askjo/camofox-browser ``` **Tools:** `camofox_create_tab` | `camofox_snapshot` | `camofox_click` | `camofox_type` | `camofox_navigate` | `camofox_scroll` | `camofox_screenshot` | `camofox_close_tab` | `camofox_list_tabs` | `camofox_import_cookies` ### Standalone Run from npm: ```bash npx @askjo/camofox-browser ``` Or from source: ```bash git clone https://github.com/jo-inc/camofox-browser cd camofox-browser npm install npm start # downloads Camoufox on first run (~300MB) ``` Default port is `9377`. See [Environment Variables](#environment-variables) for all options. > **Note:** the postinstall script unsets `PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD` for itself before fetching the Camoufox binary. Without that override, an exported `PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD=1` (common when Playwright is configured to use system Chrome) would silently skip the binary download and crash the server at runtime. > > **External Camoufox executable:** set `CAMOUFOX_EXECUTABLE=/path/to/camoufox-bin` before `npm install` and when starting the server to skip the bundled download and launch that executable. Compatibility aliases are `CAMOUFOX_EXECUTABLE_PATH` and `CAMOFOX_EXECUTABLE_PATH`. This is useful for NixOS paths such as `/nix/store/.../camoufox-bin`; the executable must come from a Camoufox bundle that includes `properties.json`, `version.json`, and `fontconfig/`. > > **Air-gapped or custom binary management:** prefer `CAMOUFOX_EXECUTABLE` when you already have a Camoufox bundle. Otherwise disable the auto-fetch with `npm install --ignore-scripts` (skips lifecycle scripts for *every* dependency -- bluntest option) or, more surgically, `npm install --omit=optional` plus a manual `npx camoufox-js fetch` step against your mirror. Note that `PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD=1 npm install` no longer skips the Camoufox download (the postinstall sanitizes the env locally); use `--ignore-scripts` or `CAMOUFOX_EXECUTABLE` for that. ### Docker The included `Makefile` auto-detects your CPU architecture and pre-downloads Camoufox + yt-dlp binaries outside the Docker build, so rebuilds are fast (~30s vs ~3min). ```bash # Build and start (auto-detects arch: aarch64 on M1/M2, x86_64 on Intel) make up # Stop and remove the container make down # Force a clean rebuild (e.g. after upgrading VERSION/RELEASE) make reset # Just download binaries (without building) make fetch # Override arch or version explicitly make up ARCH=x86_64 make up VERSION=135.0.1 RELEASE=beta.24 ``` #### Windows On Windows, `make` is not available. Use the included `build.ps1` PowerShell script instead: ```powershell # Build and start .\build.ps1 up # Stop and remove the container .\build.ps1 down # Build image only .\build.ps1 build # Force a clean rebuild .\build.ps1 reset # Download binaries only (without building) .\build.ps1 fetch # Override architecture .\build.ps1 up -Arch x86_64 .\build.ps1 up -Arch aarch64 ``` > **Note:** PowerShell 7+ (`pwsh`) is recommended but `powershell.exe` (Windows PowerShell 5.1) also works. The script requires Docker Desktop for Windows with the WSL2 backend. > > **Line endings:** This project includes a `.gitattributes` file that forces Unix (`LF`) line endings for `.sh` files. If you've already cloned the repo and get `sh: not found` or `set: Illegal option -` errors during `docker build`, run: > ```powershell > Get-ChildItem -Recurse *.sh | ForEach-Object { (Get-Content $_) -join "`n" + "`n" | Set-Content $_ -NoNewline } > ``` > This converts shell scripts to LF line endings. Future clones will handle this automatically thanks to `.gitattributes`. > **WARNING: Do not run `docker build` directly.** The Dockerfile uses bind mounts to pull pre-downloaded binaries from `dist/`. Always use `make up` (or `make fetch` then `make build`) -- it downloads the binaries first. ### Fly.io For Fly.io or other remote CI, you'll need a Dockerfile that downloads binaries at build time instead of using bind mounts. ### Railway A `railway.toml` is included. It uses `Dockerfile.ci` (which downloads binaries at build time) and maps Railway's `PORT` env var to `CAMOFOX_PORT` automatically. ```bash # Install Railway CLI, then: railway link railway up ``` Set secrets via the Railway dashboard or CLI: ```bash railway variables set CAMOFOX_API_KEY="your-generated-key" ``` ## Usage ### Cookie Import Import cookies from your browser into Camoufox to skip interactive login on sites like LinkedIn, Amazon, etc. #### Setup **1. Generate a secret key:** ```bash # macOS / Linux openssl rand -hex 32 ``` **2. Set the environment variable before starting OpenClaw:** ```bash export CAMOFOX_API_KEY="your-generated-key" openclaw start ``` The same key is used by both the plugin (to authenticate requests) and the server (to verify them). Both run from the same environment -- set it once. > **Why an env var?** The key is a secret. Plugin config in `openclaw.json` is stored in plaintext, so secrets don't belong there. Set `CAMOFOX_API_KEY` in your shell profile, systemd unit, Docker env, or Fly.io secrets. > **Cookie import is disabled by default.** If `CAMOFOX_API_KEY` is not set, the server rejects all cookie requests with 403. **3. Export cookies from your browser:** Install a browser extension that exports Netscape-format cookie files (e.g., "cookies.txt" for Chrome/Firefox). Export the cookies for the site you want to authenticate. **4. Place the cookie file:** ```bash mkdir -p ~/.camofox/cookies cp ~/Downloads/linkedin_cookies.txt ~/.camofox/cookies/linkedin.txt ``` The default directory is `~/.camofox/cookies/`. Override with `CAMOFOX_COOKIES_DIR`. **5. Ask your agent to import them:** > Import my LinkedIn cookies from linkedin.txt The agent calls `camofox_import_cookies` -> reads the file -> POSTs to the server with the Bearer token -> cookies are injected into the browser session. Subsequent `camofox_create_tab` calls to linkedin.com will be authenticated. #### How it works ``` ~/.camofox/cookies/linkedin.txt (Netscape format, on disk) | v camofox_import_cookies tool (parses file, filters by domain) | v POST /sessions/:userId/cookies | Authorization: Bearer | Body: { cookies: [Playwright cookie objects] } v camofox server (validates, sanitizes, injects) | v context.addCookies(...) | Camoufox browser session (authenticated browsing) ``` - `cookiesPath` is resolved relative to the cookies directory -- path traversal outside it is blocked - Max 500 cookies per request, 5MB file size limit - Cookie objects are sanitized to an allowlist of Playwright fields ### Session Persistence By default, camofox persists each user's cookies and localStorage to `~/.camofox/profiles/`. Sessions survive browser restarts -- log in once (via cookies or VNC), and subsequent sessions restore the authenticated state automatically. ``` ~/.camofox/ |-- cookies/ # Bootstrap cookie files (Netscape format) \-- profiles/ # Persisted session state (auto-managed) \-- / \-- storage_state.json ``` Override the directory with `CAMOFOX_PROFILE_DIR` or set `"profileDir"` in the persistence plugin config. To disable persistence, set `"persistence": { "enabled": false }` in `camofox.config.json`. By default, storage state contains cookies and localStorage only. To also persist IndexedDB, set `"indexedDB": true` in the persistence plugin config. This captures all serializable IndexedDB records—not only authentication data—and may make snapshots significantly larger and checkpoints slower. ### Session Tracing Capture a Playwright trace of every action in a session: page screenshots, DOM snapshots, network requests, and console output. Output is a single `.zip` file you can open in Playwright's built-in Trace Viewer. Opt-in per session by passing `trace: true` when opening the first tab: ```bash curl -X POST http://localhost:9377/tabs \ -H 'Content-Type: application/json' \ -d '{"userId":"agent1","sessionKey":"task1","url":"https://example.com","trace":true}' ``` The trace is written when the session closes. Close the session to flush it, then list, fetch, and view: ```bash # Close the session to flush the trace curl -X DELETE http://localhost:9377/sessions/agent1 # List trace files curl http://localhost:9377/sessions/agent1/traces # {"traces":[{"filename":"trace-2026-04-18T04-05-00-...zip","sizeBytes":42810,"createdAt":...}]} # Download (Content-Type: application/zip) curl http://localhost:9377/sessions/agent1/traces/trace-2026-04-18T04-05-00-abc.zip > session.zip # View it in Playwright's Trace Viewer npx playwright show-trace session.zip # Delete curl -X DELETE http://localhost:9377/sessions/agent1/traces/trace-2026-04-18T04-05-00-abc.zip ``` Why traces instead of video: Camoufox is Firefox-based, and Playwright's `recordVideo` is Chromium-only. Traces work on Firefox and give you more than video (network + DOM + console + screenshots). Tracing cannot be toggled on an existing session. `DELETE /sessions/:userId` first if you need to change the flag. Storage defaults to `~/.camofox/traces//` and is swept on server startup: - `CAMOFOX_TRACES_DIR` - base directory (default: `~/.camofox/traces`) - `CAMOFOX_TRACES_MAX_BYTES` - max size per trace, removed at next startup if exceeded (default: 50MB) - `CAMOFOX_TRACES_TTL_HOURS` - traces older than this are removed at next startup (default: 24) #### Standalone server usage ```bash curl -X POST http://localhost:9377/sessions/agent1/cookies \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_CAMOFOX_API_KEY' \ -d '{"cookies":[{"name":"foo","value":"bar","domain":"example.com","path":"/","expires":-1,"httpOnly":false,"secure":false}]}' ``` #### Docker / Fly.io / Railway ```bash docker run -p 9377:9377 \ -e CAMOFOX_API_KEY="your-generated-key" \ -v ~/.camofox/cookies:/home/node/.camofox/cookies:ro \ camofox-browser ``` For Fly.io: ```bash fly secrets set CAMOFOX_API_KEY="your-generated-key" ``` For Railway: ```bash railway variables set CAMOFOX_API_KEY="your-generated-key" ``` ### Proxy + GeoIP Route all browser traffic through a proxy with automatic locale, timezone, and geolocation derived from the proxy's IP address via Camoufox's built-in GeoIP. **Simple proxy (single endpoint):** ```bash export PROXY_HOST=166.88.179.132 export PROXY_PORT=46040 export PROXY_USERNAME=myuser export PROXY_PASSWORD=mypass npm start ``` **Backconnect proxy (rotating sticky sessions):** For providers like Decodo, Bright Data, or Oxylabs that offer a single gateway endpoint with session-based sticky IPs: ```bash export PROXY_STRATEGY=backconnect export PROXY_BACKCONNECT_HOST=gate.provider.com export PROXY_BACKCONNECT_PORT=7000 export PROXY_USERNAME=myuser export PROXY_PASSWORD=mypass npm start ``` Each browser context gets a unique sticky session, so different users get different IP addresses. Sessions rotate automatically on proxy errors or Google blocks. Or in Docker: ```bash docker run -p 9377:9377 \ -e PROXY_HOST=166.88.179.132 \ -e PROXY_PORT=46040 \ -e PROXY_USERNAME=myuser \ -e PROXY_PASSWORD=mypass \ camofox-browser ``` When a proxy is configured: - All traffic routes through the proxy - Camoufox's GeoIP automatically sets `locale`, `timezone`, and `geolocation` to match the proxy's exit IP - Browser fingerprint (language, timezone, coordinates) is consistent with the proxy location - Without a proxy, defaults to `en-US`, `America/Los_Angeles`, San Francisco coordinates ### Telemetry Browser automation fails in ways that are hard to predict -- Cloudflare challenges, site redesigns breaking selectors, redirect loops, dialog storms, renderer crashes. The scope is wide and the failure modes are diverse. Without telemetry, the only signal is "it didn't work." Telemetry gives us structured data on *which sites fail*, *how they fail*, and *how often*, so we can prioritize fixes for the patterns that actually affect users. It files GitHub Issues automatically when: - **Uncaught exceptions** crash the process - **Event loop stalls** exceed 5 seconds (watchdog detection) - **Frustration patterns** -- 3+ consecutive failures (timeout, dead context, navigation abort) on the same tab Each report includes the failure type, stack trace, tab health counters (HTTP status histogram, console errors, request failures, redirect depth), and the target URL -- all anonymized. #### How it works Telemetry is sent to a lightweight Cloudflare Worker endpoint at [`https://camofox-telemetry.askjo.workers.dev`](https://camofox-telemetry.askjo.workers.dev/health). The endpoint holds the GitHub App credentials as environment secrets -- **no secrets are shipped in this package**. ``` lib/reporter.js (client, no secrets) | anonymize -> POST https://camofox-telemetry.askjo.workers.dev/report v Cloudflare Worker (holds GitHub App key) | validate -> rate-limit -> dedup -> create GitHub Issue v GitHub Issue created ``` The endpoint source code is in this repo at [`workers/crash-reporter/index.ts`](workers/crash-reporter/index.ts). #### Verification You don't have to trust us -- verify what the live endpoint is running: ```bash # 1. Ask the endpoint what code it's running curl https://camofox-telemetry.askjo.workers.dev/source # -> { "commit": "abc1234", "sha256": "e3b0c44...", "source": "https://github.com/..." } # 2. Compare the sha256 against the source in this repo sha256sum workers/crash-reporter/index.ts # 3. Check the commit matches what CI deployed # https://github.com/jo-inc/camofox-browser/actions/workflows/telemetry-deploy.yml git log --oneline workers/crash-reporter/index.ts | head -1 ``` If the hashes don't match, the endpoint is running different code than what's in the repo. The deploy workflow ([`.github/workflows/telemetry-deploy.yml`](.github/workflows/telemetry-deploy.yml)) injects the commit and source hash at deploy time -- every deploy is auditable in [GitHub Actions](https://github.com/jo-inc/camofox-browser/actions/workflows/telemetry-deploy.yml). Or skip verification entirely: `CAMOFOX_CRASH_REPORT_ENABLED=false` disables all telemetry, or point to [your own endpoint](#self-hosted-telemetry-endpoint) with `CAMOFOX_CRASH_REPORT_URL`. #### Privacy All reported data goes through paranoid anonymization ([`lib/reporter.js` L28-290](lib/reporter.js#L28-L290)) before leaving the process: - **URLs** -- well-known public domains (Google, Amazon, Reddit, Cloudflare, etc.) are shown verbatim so we can identify which sites cause problems. Private/unknown domains are replaced with a stable HMAC hash (`site-a1b2c3d4`) -- same hash across reports for correlation, but not reversible to the original domain. Path segments become `*/*/*` (depth only). Query params become `?[3]` (count only). No keys, values, or path content is ever included. - **File paths** -> stripped to filename only (`/server.js`) - **Tokens, secrets, API keys** -> `` - **IPs, emails, env vars** -> redacted - **Docker/Fly machine IDs** -> `` - **Tab health** -- pure counters (crash count, error count, status code histogram). No page content, no URLs, no user data. Duplicate issues are detected by stack signature and get a `+1` comment instead of a new issue. ```bash # Disable telemetry export CAMOFOX_CRASH_REPORT_ENABLED=false # Point to your own endpoint (see below) export CAMOFOX_CRASH_REPORT_URL=https://your-endpoint.example.com/report # Adjust rate limit (default: 10 per hour) export CAMOFOX_CRASH_REPORT_RATE_LIMIT=5 ``` #### Self-hosted telemetry endpoint To file telemetry reports in your own GitHub repo instead of `jo-inc/camofox-browser`: 1. **Create a GitHub App** -- [Settings -> Developer settings -> GitHub Apps -> New](https://github.com/settings/apps/new) - Permissions: **Repository -> Issues -> Read & Write** - Uncheck **Webhook -> Active** (not needed) - Click **Generate a key** -- downloads a `.pem` file - Install the app on your target repo (Install App -> select repo) - Note your **App ID** (number on the app's General page) and **Installation ID** (from the URL after installing: `github.com/settings/installations/{id}`) 2. **Deploy the endpoint** -- clone this repo and deploy the worker: ```bash cd workers/crash-reporter # Edit wrangler.toml: set account_id to your Cloudflare account ID npx wrangler deploy ``` The worker is a single TypeScript file with zero npm dependencies. It also runs on Deno, Bun, or any runtime with the Web Crypto API. 3. **Set worker secrets:** ```bash cd workers/crash-reporter echo "YOUR_APP_ID" | npx wrangler secret put GH_APP_ID echo "YOUR_INSTALL_ID" | npx wrangler secret put GH_INSTALL_ID # Key must be PKCS#8 DER base64 (not raw PEM) openssl pkcs8 -topk8 -inform PEM -outform DER -nocrypt -in your-app.pem | \ base64 | tr -d '\n' | npx wrangler secret put GH_PRIVATE_KEY # File issues in your repo echo "your-org/your-repo" | npx wrangler secret put GH_REPO ``` 4. **Point camofox-browser to your endpoint:** ```bash export CAMOFOX_CRASH_REPORT_URL=https://your-worker.your-subdomain.workers.dev/report ``` 5. **Verify:** ```bash curl https://your-worker.your-subdomain.workers.dev/health # -> {"status":"ok"} ``` ### Structured Logging All log output is JSON (one object per line) for easy parsing by log aggregators: ```json {"ts":"2026-02-11T23:45:01.234Z","level":"info","msg":"req","reqId":"a1b2c3d4","method":"POST","path":"/tabs","userId":"agent1"} {"ts":"2026-02-11T23:45:01.567Z","level":"info","msg":"res","reqId":"a1b2c3d4","status":200,"ms":333} ``` Health check requests (`/health`) are excluded from request logging to reduce noise. ### Basic Browsing ```bash # Create a tab curl -X POST http://localhost:9377/tabs \ -H 'Content-Type: application/json' \ -d '{"userId": "agent1", "sessionKey": "task1", "url": "https://example.com"}' # Get accessibility snapshot with element refs curl "http://localhost:9377/tabs/TAB_ID/snapshot?userId=agent1" # -> { "snapshot": "[button e1] Submit [link e2] Learn more", ... } # Click by ref curl -X POST http://localhost:9377/tabs/TAB_ID/click \ -H 'Content-Type: application/json' \ -d '{"userId": "agent1", "ref": "e1"}' # Type into an element curl -X POST http://localhost:9377/tabs/TAB_ID/type \ -H 'Content-Type: application/json' \ -d '{"userId": "agent1", "ref": "e2", "text": "hello", "pressEnter": true}' # Navigate with a search macro curl -X POST http://localhost:9377/tabs/TAB_ID/navigate \ -H 'Content-Type: application/json' \ -d '{"userId": "agent1", "macro": "@google_search", "query": "best coffee beans"}' ``` ## API ### Tab Lifecycle | Method | Endpoint | Description | |--------|----------|-------------| | `POST` | `/tabs` | Create tab with initial URL | | `GET` | `/tabs?userId=X` | List open tabs | | `GET` | `/tabs/:id/stats` | Tab stats (tool calls, visited URLs) | | `DELETE` | `/tabs/:id` | Close tab | | `DELETE` | `/tabs/group/:groupId` | Close all tabs in a group | | `DELETE` | `/sessions/:userId` | Close all tabs for a user | ### Page Interaction | Method | Endpoint | Description | |--------|----------|-------------| | `GET` | `/tabs/:id/snapshot` | Accessibility snapshot with element refs. Query params: `includeScreenshot=true` (add base64 PNG), `offset=N` (paginate large snapshots) | | `POST` | `/tabs/:id/click` | Click element by ref or CSS selector | | `POST` | `/tabs/:id/type` | Type text into element | | `POST` | `/tabs/:id/press` | Press a keyboard key | | `POST` | `/tabs/:id/scroll` | Scroll page (up/down/left/right) | | `POST` | `/tabs/:id/navigate` | Navigate to URL or search macro | | `POST` | `/tabs/:id/wait` | Wait for selector or timeout | | `GET` | `/tabs/:id/links` | Extract all links on page | | `GET` | `/tabs/:id/images` | List `` elements. Query params: `includeData=true` (return inline data URLs), `maxBytes=N`, `limit=N` | | `GET` | `/tabs/:id/downloads` | List captured downloads. Query params: `includeData=true` (base64 file data), `consume=true` (clear after read), `maxBytes=N` | | `GET` | `/tabs/:id/screenshot` | Take screenshot | | `POST` | `/tabs/:id/back` | Go back | | `POST` | `/tabs/:id/forward` | Go forward | | `POST` | `/tabs/:id/refresh` | Refresh page | ### YouTube Transcript | Method | Endpoint | Description | |--------|----------|-------------| | `POST` | `/youtube/transcript` | Extract captions from a YouTube video | ```bash curl -X POST http://localhost:9377/youtube/transcript \ -H 'Content-Type: application/json' \ -d '{"url": "https://www.youtube.com/watch?v=dQw4w9WgXcQ", "languages": ["en"]}' # -> { "status": "ok", "transcript": "[00:18] [music] We're no strangers to love [music]\n...", "video_title": "...", "total_words": 548 } ``` Uses [yt-dlp](https://github.com/yt-dlp/yt-dlp) when available (fast, no browser needed). Falls back to a browser-based intercept method if yt-dlp is not installed -- this is slower and less reliable due to YouTube ad pre-rolls. ### Server | Method | Endpoint | Description | |--------|----------|-------------| | `GET` | `/health` | Health check | | `POST` | `/start` | Start browser engine | | `POST` | `/stop` | Stop browser engine | ### Sessions | Method | Endpoint | Description | |--------|----------|-------------| | `POST` | `/sessions/:userId/cookies` | Add cookies to a user session (Playwright cookie objects) | | `GET` | `/sessions/:userId/storage_state` | Export persisted browser storage ([VNC plugin](plugins/vnc/)) | | `DELETE` | `/sessions/:userId/storage_state` | Reset the live session and delete its persisted browser storage ([persistence plugin](plugins/persistence/)) | ## Search Macros `@google_search` | `@youtube_search` | `@amazon_search` | `@reddit_search` | `@reddit_subreddit` | `@wikipedia_search` | `@twitter_search` | `@yelp_search` | `@spotify_search` | `@netflix_search` | `@linkedin_search` | `@instagram_search` | `@tiktok_search` | `@twitch_search` Reddit macros return JSON directly (no HTML parsing needed): - `@reddit_search` - search all of Reddit, returns JSON with 25 results - `@reddit_subreddit` - browse a subreddit (e.g., query `"programming"` -> `/r/programming.json`) ## Browser Configuration Browser behavior can be tuned in `camofox.config.json`: ```json { "newPageTimeoutMs": 10000 } ``` `newPageTimeoutMs` controls how long tab creation waits for Firefox to create a page. If the context is unresponsive, Camofox replaces only that user's context and retries once. The default is 10 seconds. ## Environment Variables | Variable | Description | Default | |----------|-------------|---------| | `CAMOFOX_PORT` | Server port | `9377` | | `PORT` | Server port (fallback, for platforms like Fly.io, Railway) | `9377` | | `CAMOFOX_BIND_HOST` | Optional server bind host. Set to `127.0.0.1` for loopback-only access or `0.0.0.0` for IPv4 on all interfaces. When unset, Node uses its default all-interface binding. | - | | `CAMOFOX_API_KEY` | Enable cookie import endpoint (disabled if unset) | - | | `CAMOFOX_ADMIN_KEY` | Required for `POST /stop` | - | | `CAMOFOX_ACCESS_KEY` | If set, all routes (except `/health`, cookie import, and `/stop`) require `Authorization: Bearer `. Lets you safely expose the server beyond loopback. | - | | `CAMOFOX_EVALUATE_MAX_BODY_SIZE` | Max JSON request body size for `POST /tabs/:tabId/evaluate`; other JSON routes remain limited to `100kb`. | `1mb` | | `CAMOUFOX_EXECUTABLE` | External Camoufox executable to use instead of downloading/launching the bundled cache. Must point to a Camoufox bundle with sibling resources. | - | | `CAMOUFOX_EXECUTABLE_PATH` | Compatibility alias for `CAMOUFOX_EXECUTABLE` | - | | `CAMOFOX_EXECUTABLE_PATH` | Compatibility alias for `CAMOUFOX_EXECUTABLE` | - | | `CAMOFOX_DISABLE_DEFAULT_ADDONS` | Set to `1`/`true` to skip downloading and launching the default uBlock Origin (UBO) addon. Useful for deployments where the addons.mozilla.org download is unreliable or unwanted (a failed download otherwise leaves a broken addon cache that blocks startup). | `0` | | `CAMOFOX_COOKIES_DIR` | Directory for cookie files | `~/.camofox/cookies` | | `CAMOFOX_UPLOADS_DIR` | Directory allowed for `POST /tabs/:tabId/upload` file attachments. Paths outside it, including symlink escapes, are rejected. | `~/.camofox/uploads` | | `CAMOFOX_PROFILE_DIR` | Directory for persisted session profiles | `~/.camofox/profiles` | | `CAMOFOX_TRACES_DIR` | Directory for session trace zips | `~/.camofox/traces` | | `CAMOFOX_TRACES_MAX_BYTES` | Max size per trace, removed on next startup if exceeded | `52428800` (50MB) | | `CAMOFOX_TRACES_TTL_HOURS` | Traces older than this are swept on startup | `24` | | `MAX_SESSIONS` | Max concurrent browser sessions | `50` | | `MAX_TABS_PER_SESSION` | Max tabs per session | `10` | | `SESSION_TIMEOUT_MS` | Session inactivity timeout | `1800000` (30min) | | `BROWSER_IDLE_TIMEOUT_MS` | Kill browser when idle (0 = never) | `300000` (5min) | | `HANDLER_TIMEOUT_MS` | Max time for any handler | `30000` (30s) | | `MAX_CONCURRENT_PER_USER` | Concurrent request cap per user | `3` | | `MAX_OLD_SPACE_SIZE` | Node.js V8 heap limit (MB) | `128` | | `PROXY_STRATEGY` | Proxy mode: `backconnect` (rotating sticky sessions) or blank (single endpoint) | - | | `PROXY_PROVIDER` | Provider name for session format (e.g. `decodo`) | `decodo` | | `PROXY_HOST` | Proxy hostname or IP (simple mode) | - | | `PROXY_PORT` | Proxy port (simple mode) | - | | `PROXY_USERNAME` | Proxy auth username | - | | `PROXY_PASSWORD` | Proxy auth password | - | | `PROXY_BACKCONNECT_HOST` | Backconnect gateway hostname | - | | `PROXY_BACKCONNECT_PORT` | Backconnect gateway port | `7000` | | `PROXY_COUNTRY` | Target country for proxy geo-targeting | - | | `PROXY_STATE` | Target state/region for proxy geo-targeting | - | | `TAB_INACTIVITY_MS` | Close tabs idle longer than this | `300000` (5min) | | `CAMOFOX_CRASH_REPORT_ENABLED` | Enable anonymized crash/hang telemetry (`false` to disable) | `true` | | `CAMOFOX_CRASH_REPORT_URL` | Telemetry endpoint ([self-hosted endpoint](#self-hosted-telemetry-endpoint)) | `https://camofox-telemetry.askjo.workers.dev/report` | | `CAMOFOX_CRASH_REPORT_REPO` | GitHub repo for telemetry issues | `jo-inc/camofox-browser` | | `CAMOFOX_CRASH_REPORT_RATE_LIMIT` | Max telemetry reports per hour | `10` | | `ENABLE_VNC` | Enable VNC plugin for interactive browser access (`1`) | - | | `VNC_PASSWORD` | Password for VNC access (recommended in production) | - | | `NOVNC_PORT` | noVNC web UI port | `6080` | ## Architecture ``` Browser Instance (Camoufox) \-- User Session (BrowserContext) - isolated cookies/storage |-- Tab Group (sessionKey: "conv1") | |-- Tab (google.com) | \-- Tab (github.com) \-- Tab Group (sessionKey: "conv2") \-- Tab (amazon.com) ``` Sessions auto-expire after 30 minutes of inactivity. The browser itself shuts down after 5 minutes with no active sessions, and relaunches on the next request. When a session's tab limit is reached, the oldest/least-used tab is automatically recycled instead of returning an error -- so long-running agent sessions don't hit dead ends. ## Security Model This section documents the security boundaries of camofox-browser for users and automated security reviewers. ### Code isolation All `process.env` reads are centralized in `lib/config.js`. All `child_process` usage is in `lib/launcher.js` (server subprocess) and `plugins/youtube/youtube.js` (yt-dlp). The main `server.js` has route handlers but zero `process.env` reads and zero `child_process` imports. No single file combines environment/credential access with network sends. ### No embedded secrets Zero credentials, private keys, API tokens, or signing keys ship in this package. All secrets are provided at runtime via environment variables (`CAMOFOX_API_KEY`, `CAMOFOX_ACCESS_KEY`) or are Cloudflare Worker environment secrets (telemetry endpoint GitHub App key). ### Cookie import is disabled by default The cookie import endpoint (`POST /sessions/:userId/cookies`) is gated behind `CAMOFOX_API_KEY`. If this env var is not set, the server rejects all cookie import requests with HTTP 403. Cookie files are read from a sandboxed directory (`~/.camofox/cookies/`) with path traversal protection -- attempts to escape the directory are blocked. Max 500 cookies per request, 5MB file size limit. ### Access control `CAMOFOX_ACCESS_KEY` provides global bearer token authentication for all routes (except `/health`). When set, every request must include `Authorization: Bearer `. Recommended for any deployment beyond localhost. ### Binary download The Camoufox browser engine (~300MB) is downloaded at `npm install` time by [`camoufox-js`](https://www.npmjs.com/package/camoufox-js), an npm package maintained by the [Camoufox project](https://camoufox.com). It downloads from [official GitHub releases](https://github.com/nicedayzhu/camoufox/releases) with integrity verification handled by `camoufox-js`. No custom download URLs, no URL shorteners, no raw IP addresses. ### Telemetry Anonymized crash/hang telemetry is sent to a Cloudflare Worker endpoint. The endpoint source is [in this repo](workers/crash-reporter/index.ts) and auditable. Verification: `GET /source` on the endpoint returns the deployed commit hash and sha256 so you can compare against the repo. The reporter ([`lib/reporter.js` L28-290](lib/reporter.js#L28-L290)) applies paranoid anonymization: private domains are HMAC-hashed (not reversible), paths are stripped, tokens/IPs/emails are redacted. No page content, cookies, or user data is ever sent. Disable with `CAMOFOX_CRASH_REPORT_ENABLED=false` or point to your own endpoint with `CAMOFOX_CRASH_REPORT_URL`. ### Session persistence The persistence plugin saves cookies and localStorage to `~/.camofox/profiles//` so authenticated sessions survive browser restarts. UserIds are hashed for directory names. Disable via `camofox.config.json` by removing `persistence` from the plugins array. ### Network access Outbound connections are made to: (1) URLs the agent navigates to (core functionality), (2) the telemetry endpoint (anonymized, opt-out available). Inbound: the REST API on port 9377, bound to all interfaces by default or to `CAMOFOX_BIND_HOST` when configured, optionally protected by `CAMOFOX_ACCESS_KEY`. ### Subprocess usage Two subprocesses may be spawned: (1) the Camoufox browser engine (core functionality, `lib/launcher.js`), (2) yt-dlp for YouTube transcript extraction (optional, `plugins/youtube/youtube.js`). Both are isolated in dedicated files separate from route handlers. ## Testing ```bash npm test # all tests npm run test:e2e # e2e tests only npm run test:live # live site tests (Google, macros) npm run test:debug # with server output ``` ## npm ```bash npm install @askjo/camofox-browser ``` ## Credits - [Camoufox](https://camoufox.com) - Firefox-based browser with C++ anti-detection - [Donate to Camoufox's original creator daijro](https://camoufox.com/about/) - [OpenClaw](https://openclaw.ai) - Open-source AI agent framework ## Crypto Scam Warning Sketchy people are doing sketchy things with crypto tokens named "Camofox" now that this project is getting attention. **Camofox is not a crypto project and will never be one.** Any token, coin, or NFT using the Camofox name has nothing to do with us. ## License MIT --- ## File: plugins/vnc/README.md # VNC Plugin > Originally contributed by [@leoneparise](https://github.com/leoneparise) in [PR #65](https://github.com/jo-inc/camofox-browser/pull/65). Reworked as a plugin for the camofox extension system. Interactive browser access via VNC. Log into sites visually, solve CAPTCHAs, approve OAuth prompts — then export the authenticated storage state for reuse by your agent. ## How it works ``` Camoufox (Xvfb :99, 1920x1080) ↑ x11vnc (attaches to :99, port 5900) ↑ noVNC / websockify (port 6080) ↑ Your browser → http://localhost:6080/vnc.html ``` The plugin overrides Camoufox's default 1x1 virtual display with a human-usable resolution, then runs a watcher process that detects the Xvfb display and attaches x11vnc + noVNC. The watcher handles browser restarts automatically — when Camoufox relaunches on a new display, x11vnc reattaches. ## Quick start ### Docker ```bash docker run -p 9377:9377 -p 6080:6080 \ -e ENABLE_VNC=1 \ camofox-browser # Open http://localhost:6080/vnc.html in your browser ``` ### Config file ```json { "plugins": { "vnc": { "enabled": true, "resolution": "1920x1080", "password": "optional-secret", "viewOnly": false, "novncPort": 6080 } } } ``` ## Workflow: interactive login → agent reuse 1. **Start with VNC enabled:** ```bash docker run -p 9377:9377 -p 6080:6080 -e ENABLE_VNC=1 camofox-browser ``` 2. **Create a session and navigate to the login page:** ```bash curl -X POST http://localhost:9377/tabs \ -H 'Content-Type: application/json' \ -d '{"userId": "my-agent", "sessionKey": "default", "url": "https://accounts.google.com"}' ``` 3. **Log in visually** via http://localhost:6080/vnc.html — complete MFA, solve CAPTCHAs, etc. 4. **Export the authenticated state:** ```bash curl http://localhost:9377/sessions/my-agent/storage_state \ -H 'Authorization: Bearer YOUR_CAMOFOX_API_KEY' \ -o storage_state.json ``` 5. **Reuse on future runs** — pair with the [persistence plugin](../persistence/) to automatically restore state on session creation: ```json { "plugins": { "vnc": { "enabled": true }, "persistence": { "enabled": true, "profileDir": "/data/profiles" } } } ``` With both plugins active, the persistence plugin automatically checkpoints storage state on session close and restores it on creation. The VNC plugin's export endpoint also triggers a persistence checkpoint via the `session:storage:export` event. ## API ### GET /vnc/status Report whether the VNC watcher and its x11vnc backend are running. This endpoint does not require authentication and exposes no password or session data. ```json { "enabled": true, "running": true, "watcherRunning": true, "display": ":0", "vncPort": 5900, "novncPort": 6080, "path": "/vnc.html" } ``` `running` becomes false while no owned X display is attached or while x11vnc is being restarted. `watcherRunning` distinguishes that state from the watcher process itself having exited. ### GET /sessions/:userId/storage_state Export the full Playwright storage state (cookies + localStorage origins) for a user's active browser context. **Auth:** Same as cookie import — requires `CAMOFOX_API_KEY` Bearer token, or loopback access in non-production. **Response:** ```json { "cookies": [ { "name": "session_id", "value": "abc123", "domain": ".example.com", "path": "/", "expires": 1700000000, "httpOnly": true, "secure": true, "sameSite": "Lax" } ], "origins": [ { "origin": "https://example.com", "localStorage": [ { "name": "theme", "value": "dark" } ] } ] } ``` **Errors:** - `404` — No active session for the given userId - `403` — Missing or invalid API key - `500` — Context is dead or storageState export failed ## Configuration | Source | Variable | Description | Default | |--------|----------|-------------|---------| | env | `ENABLE_VNC` | Enable the plugin (`1`) | off | | env | `VNC_PASSWORD` | x11vnc password | none (open) | | env | `VNC_RESOLUTION` | Xvfb screen resolution | `1920x1080` | | env | `VIEW_ONLY` | Disable mouse/keyboard input (`1`) | off | | env | `VNC_PORT` | x11vnc listen port | `5900` | | env | `NOVNC_PORT` | noVNC web UI port | `6080` | | config | `plugins.vnc.enabled` | Enable the plugin | `false` | | config | `plugins.vnc.password` | x11vnc password | none | | config | `plugins.vnc.resolution` | Xvfb screen resolution | `1920x1080` | | config | `plugins.vnc.viewOnly` | View-only mode | `false` | | config | `plugins.vnc.vncPort` | x11vnc listen port | `5900` | | config | `plugins.vnc.novncPort` | noVNC web UI port | `6080` | Environment variables override config file values. ## Security ⚠️ **VNC is unencrypted by default.** When running in production: - **Set `VNC_PASSWORD`** — without it, anyone who can reach port 6080 has full browser control - **Bind 6080 to localhost** and access via SSH tunnel: `ssh -L 6080:localhost:6080 your-server` - **Or use a firewall** to restrict access to port 6080 - In Docker: `-p 127.0.0.1:6080:6080` binds only to localhost ## System dependencies The plugin declares its apt dependencies in `apt.txt` — these are installed automatically during `docker build` via `scripts/install-plugin-deps.sh`: - `x11vnc` — attaches to Xvfb display - `novnc` + `python3-websockify` — web-based VNC client - `net-tools` + `procps` — display detection utilities ## Events | Event | Payload | Description | |-------|---------|-------------| | `vnc:watcher:started` | `{ pid }` | Watcher process spawned | | `vnc:watcher:stopped` | `{ code, signal }` | Watcher exited | | `vnc:storage:exported` | `{ userId, cookies, origins }` | Storage state exported via API | | `session:storage:export` | `{ userId, storageState }` | Awaited after export; the persistence plugin writes the same snapshot to disk without serializing the browser again | --- ## File: plugins/persistence/README.md # persistence Optional per-user browser storage state persistence for camofox-browser. Saves and restores cookies and localStorage across session restarts, container deploys, and idle timeouts using Playwright's `storageState` API. IndexedDB persistence is available as an opt-in. ## Configuration In `camofox.config.json`: ```json { "plugins": { "persistence": { "enabled": true, "profileDir": "/data/profiles", "indexedDB": true } } } ``` The profile directory can also be set via environment variable: ``` CAMOFOX_PROFILE_DIR=/data/profiles ``` - `indexedDB` (default: `false`) — set to `true` to capture IndexedDB through `storageState()`. This can preserve logins stored there, including Firebase Auth and other SSO flows. It captures all serializable IndexedDB records—not only authentication data—and may make snapshots significantly larger and checkpoints slower. ## How it works - **Session create**: If a persisted `storageState` exists for the `userId`, it's restored into the new Playwright context. - **First run**: If no persisted state exists, bootstrap cookies from `CAMOFOX_COOKIES_DIR/cookies.txt` are imported (if present). - **Cookie import / session close / shutdown**: Storage state is checkpointed to disk via atomic tmp-write + rename. - **Session reset**: `DELETE /sessions/:userId/storage_state` closes the live context without checkpointing it, waits for in-flight writes, and deletes persisted state so the next session starts fresh. - **User isolation**: Each `userId` maps to a deterministic SHA256-hashed subdirectory under `profileDir`, so arbitrary userIds are path-safe. ## Docker When running with Docker, mount the profile directory as a volume: ```bash docker run -d \ -p 9377:9377 \ -v /host/profiles:/data/profiles \ camofox-browser ``` ## Credits Based on PR #62 by [company8](https://github.com/company8). --- METRICS --- - Files Extracted: 4 - Estimated Token Budget: ~19798 tokens - Recency Window: Active (< 180 days) - Canonical Reference: https://codewiki.google/github.com/jo-inc/camofox-browser