camoufox-stealth-browser

Review·Scanned 2/18/2026

This skill provides C++-level stealth browser automation (Camoufox) and TLS-spoofed API scraping for evading anti-bot systems. It includes instructions to run shell commands (e.g. distrobox-enter, bash scripts/setup.sh), perform network requests to sites like https://api.example.com and https://www.airbnb.com, and read/save session cookies under ~/.stealth-browser/profiles/<name>/.

from clawhub.ai·v2b647c7·43.0 KB·0 installs
Scanned from 1.0.0 at 2b647c7 · Transparency log ↗
$ vett add clawhub.ai/kesslerio/camoufox-stealth-browserReview findings below

Camoufox Stealth Browser 🦊

C++ level anti-bot evasion — not JavaScript band-aids.

Why Camoufox > Chrome-Based Tools

ApproachPatches AtDetectable?
CamoufoxC++ (compiled into browser)No — fingerprints are genuinely different
undetected-chromedriverJS runtimeYes — timing analysis reveals patches
puppeteer-stealthJS injectionYes — applied after page load
playwright-stealthJS injectionYes — same limitations

Most "stealth" tools patch Chrome with JavaScript after the browser starts. Anti-bot systems detect this via timing analysis and consistency checks.

Camoufox is different. It's a Firefox fork with stealth patches compiled into the C++ source code. WebGL, Canvas, and AudioContext fingerprints are genuinely spoofed — not masked by JS overrides.

Key Features

  • 🦊 C++ Level Stealth — Fingerprints baked into the browser binary
  • 📦 Container Isolation — Runs in distrobox, keeps host clean
  • Dual-Tool Design — Camoufox for browsers, curl_cffi for fast API-only scraping
  • 🔥 Firefox-Based — Less fingerprinted than Chrome (bots love Chrome)

Quick Start

# Setup (first time)
distrobox-enter pybox -- python3.14 -m pip install camoufox curl_cffi

# Fetch a Cloudflare-protected page
distrobox-enter pybox -- python3.14 scripts/camoufox-fetch.py \
  "https://yelp.com/biz/example" --headless

# API scraping (no browser needed)
distrobox-enter pybox -- python3.14 scripts/curl-api.py \
  "https://api.example.com" --impersonate chrome120

Requirements

  • distrobox with a pybox container
  • Residential proxy for Airbnb/Yelp (datacenter IPs = instant block)

Tools

ToolUse CaseSpeed
CamoufoxFull browser automation, JS-heavy sites~3-5s/page
curl_cffiAPI endpoints, no JS needed~100ms/request

Documentation

  • SKILL.md — Full usage guide with session management
  • references/proxy-setup.md — Proxy configuration
  • references/fingerprint-checks.md — What anti-bot systems check

Comparison with Other Skills

This skill focuses on doing one thing well: C++ level stealth with Camoufox.

For CAPTCHA solving, task checkpointing, and proxy rotation, see the GitHub issues for planned features.

License

Apache 2.0 — See LICENSE


Made with 🦊 by Kessler.io