skillfed

cloakbrowser

Stealth Chromium that passes every bot detection test. Drop-in Playwright replacement with source-level fingerprint patches.

cloakbrowser v0.5.7 734.8K downloads/30d#5,196 on PyPI30,052
Permissive license MIT Active released

What it is and what it does

CloakBrowser is a drop-in Playwright replacement that wraps a modified Chromium binary with fingerprint patches applied at the C++ source level. Instead of injecting JavaScript or tweaking launch flags—which detection systems recognize and block—it ships a real Chromium binary where canvas rendering, WebGL, audio, GPU reporting, WebRTC, and automation signals are altered at compilation time. The result is a browser that antibot systems score as legitimate because it behaves like one.

You use it exactly like Playwright: call `launch()`, create pages, navigate, and interact. The package handles binary download on first run and supports both free (single session) and Pro (concurrent scaling) modes. It includes optional humanization (mouse curves, keyboard timing, scroll patterns) and can auto-detect timezone and locale from a proxy IP. Common use cases are web scraping, QA automation, and AI agent integration where bot detection would otherwise block access.

Use it for:

  • Scrape sites protected by Cloudflare Turnstile or similar bot detection without solving CAPTCHAs.
  • Run automated QA or monitoring workflows against anti-bot-protected targets without triggering blocks.
  • Integrate stealth browsing into AI agents and automation frameworks (browser-use, Crawl4AI, LangChain).
  • Test fingerprint detection systems by running a real browser with modified hardware/rendering signatures.
  • Scale concurrent browser sessions in production with a Pro license while maintaining detection evasion.

Worth the install?

AI-flagged interpretation of the facts on this page — verify before relying

Launches a stealth Chromium browser that evades bot detection by modifying fingerprints at the C++ source level rather than through JavaScript injection or configuration hacks.

Yes, if you need to automate against anti-bot-protected sites and are comfortable with the licensing model (free single-session tier, Pro for production concurrency). The source-level patching approach is genuinely different from JavaScript-injection tools and remains actively maintained. No known vulnerabilities. Install friction is low and the API is familiar to Playwright users. Verify that the specific anti-bot systems you target are covered before committing to production.

Install

cloakbrowser on PyPI

pip

pip install cloakbrowser

uv

uv add cloakbrowser

poetry

poetry add cloakbrowser

Installing cloakbrowser

Before you install

Low friction: pure Python wheel with three stable runtime dependencies (cryptography, httpx, playwright). Active maintenance—released 3 days ago with 30052 repository stars and continuous updates. Requires Python 3.9+.

License in practice

MIT license permits commercial and private use with minimal restrictions, making it suitable for production automation and scraping workflows.

Quickstart

pip install cloakbrowser

from cloakbrowser import launch

browser = launch()
page = browser.new_page()
page.goto("https://example.com")
browser.close()

On first run, a ~200MB stealth Chromium binary is automatically downloaded and cached locally. Free tier allows one concurrent session; Pro license required for higher concurrency.

Verify before relying

  • Whether the 71 source-level C++ patches remain effective as Chromium versions advance and detection systems evolve.
  • Actual success rates against specific anti-bot systems (Kasada, DataDome, etc.) beyond the mentioned test sites.
  • Whether the free tier's single concurrent session limit is enforced per machine or per license key globally.

Package facts

License MIT (permissive)
Python support supports the current Python release (>=3.9)
Install friction low — pure-Python wheel
Runtime dependencies 3 — cryptography, httpx, playwright
Maintenance actively maintained — 3 days since the last release
Last repo commit
First released
Downloads 734,769/month — #5,196 on PyPI (30-day window, as of 2026-08-14)
Known vulnerabilities none known (OSV.dev, checked 2026-08-14)

Evidence: cloakbrowser-0.5.7-py3-none-any.whl

Keywords: ai-agent, anti-detect, antidetect, automation, bot-detection, browser, captcha, chromium, cloudflare, datadome, fingerprint, headless, playwright, puppeteer, recaptcha, scraping, stealth, turnstile, undetected, web-scraping

Development Status :: 5 - Production/StableIntended Audience :: DevelopersLicense :: OSI Approved :: MIT LicenseProgramming Language :: Python :: 3Programming Language :: Python :: 3.10Programming Language :: Python :: 3.11Programming Language :: Python :: 3.12Programming Language :: Python :: 3.13Programming Language :: Python :: 3.9Topic :: Internet :: WWW/HTTP :: BrowsersTopic :: Software Development :: Libraries :: Python ModulesTopic :: Software Development :: Testing

Tags

stealth browser automationanti-bot detection chromiumplaywright alternative undetectedbypass cloudflare turnstilefingerprint spoofing browserheadless chromium detection bypassweb scraping bot evasion
bot-detection-evasionbrowser-automationanti-scraping-bypass

More Python Modules packages

Further reading