Automation & Ops stealth-browserchromiumplaywrightpuppeteerbot-detectionweb-scrapingfingerprint

CloakBrowser Stealth Browser

Stealth Chromium with source-level C++ fingerprint patches that passes bot detection tests, a drop-in Playwright replacement.

FollowAgents review · FARS-2.1
Not recommended
50/ 100 5-point scale 2.5 / 5
1 2 3 4 5 6
1Trust10 / 29 · 1.7/5

Evidence shows: MIT license, pinned dependencies, Ed25519 signature verification for binary downloads, but no explicit least-privilege principle, missing user confirmation, limited data flow transparency, unclear sensitive data handling (e.g., proxy credentials), partial disclosure of external effects (e.g., network calls), rollback exists but limited, source attribution only via GitHub repo and author info, publisher identity unverified. Deductions: missing user confirmation, insufficient data flow transparency, unclear sensitive data handling, incomplete external effects disclosure, imperfect rollback, unverified source attribution.

2Reliability8 / 14 · 2.9/5

Evidence shows: good internal consistency in code and tests, clear dependency versions, but failure messages are limited in detail. Deductions: failure messages may not be detailed enough, dependency availability not fully verified.

3Adaptability12 / 18 · 3.3/5

Evidence shows: targets developers, provides multiple use scenarios, clear capability boundaries, precise triggers, good environment fit. Deductions: some scenarios (e.g., Docker) not fully detailed.

4Convention10 / 18 · 2.8/5

Evidence shows: clear information architecture, detailed install notes, stable naming, rich examples and FAQ, partial known limitations, clear license, versioning and changelog present, maintenance responsibility clear. Deductions: incomplete known limitations, maintenance responsibility not fully clear.

5Effectiveness7 / 13 · 2.7/5

Evidence shows: high output usability, clear marginal value, but cost-benefit not fully explained. Deductions: insufficient cost-benefit analysis.

6Verifiability3 / 8 · 1.9/5

Evidence shows: some claims supported by tests, but insufficient cross-source corroboration, unclear separation of facts and inferences. Deductions: insufficient cross-source corroboration, unclear fact-inference separation.

Evidence confidence: Low Reviewed Aug 09, 2026 Reviewed revision ec8802672321
The upstream repository has new commits since this review. The score still applies to the reviewed revision shown and may not cover the latest changes.
Safety controls not found in source: confirmation before acting
Before you use it
  • The project claims to bypass all bot detection, but no reproducible test results are provided, and tests may be environment-specific.
  • Binary downloads and license validation rely on external services, posing supply chain risks.
  • Handling of sensitive information like proxy credentials is not clearly documented, potentially leading to logging or leakage.
  • No user confirmation mechanism is provided, which may lead to automatic execution of high-risk operations.
Review evidence [1][2][3][4][5][6][7][8]
See the full review method →

What does this agent do, and when should you use it?

CloakBrowser is a modified Chromium binary with C++ source-level patches to make fingerprints indistinguishable from a real browser. It provides Python and JavaScript wrappers with APIs fully compatible with Playwright and Puppeteer. The browser auto-generates random fingerprints by default and includes 71 patches (version 150) covering Canvas, WebGL, audio, GPU, network timing, and more, even supporting human-like behavior simulation. It passes tests against 30+ detection sites, including Cloudflare Turnstile and FingerprintJS, and offers free and Pro tiers. Installation is simple via pip or npm, with Docker support and integrations for multiple frameworks.

CloakBrowser provides functions like launch(), launch_async(), launch_context(), and launch_persistent_context() to start a browser. It automatically downloads and verifies pre-compiled Chromium binaries, supports proxies (HTTP/SOCKS5), GeoIP auto timezone/locale, humanized mouse/keyboard operations (humanize=True), and persistent profiles. It manages fingerprints via command-line arguments like --fingerprint and offers CLI commands (cloakbrowser login, install, etc.) and a Docker image (cloakhq/cloakbrowser) for quick testing.

  1. Web scrapers needing to bypass Cloudflare Turnstile or reCAPTCHA.
  2. QA engineers automating tests that require realistic user behavior.
  3. Social media automation tools that need to avoid account linking.
  4. Users accessing geo-restricted content using proxy and GeoIP features.
  5. AI agent developers needing to run stealth browser instances at scale.
  6. Developers wanting seamless integration with Playwright/Puppeteer to reduce migration costs.

What are this agent's strengths and limitations?

Pros
  • Source-level patches provide stealth harder to detect than JS injection or config patches.
  • Fully compatible with Playwright/Puppeteer API for easy migration.
  • Continuously updated to keep up with anti-bot evolution.
  • Multi-language support (Python, JS, C#) and Docker deployment.
  • Free tier available to try the latest binary quickly.
Limitations
  • Free tier limits to one concurrent session, and older binaries become less effective over time.
  • Advanced features (e.g., reCAPTCHA 0.9 score) require a paid Pro subscription.
  • Large binary (~200MB) and first download takes time.
  • On Linux, may require additional Windows fonts to pass certain detections (e.g., FingerprintJS).
  • No built-in proxy rotation or CAPTCHA solving; you must bring your own.

How do you install or deploy this agent?

Python: pip install cloakbrowser; JavaScript: npm install cloakbrowser playwright-core (or puppeteer-core); .NET: dotnet add package CloakBrowser. The binary (~200MB) auto-downloads on first run. Optional GeoIP support: pip install 'cloakbrowser[geoip]'.

How do you use this agent?

Python example:

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

JavaScript example:

import { launch } from 'cloakbrowser';
const browser = await launch();
const page = await browser.newPage();
await page.goto('https://example.com');
await browser.close();

Docker quick test: docker run --rm cloakhq/cloakbrowser cloaktest. See README for options like proxy, humanize, fingerprint seeds, and more.

FAQ

What's the difference between free and Pro?
Free tier (requires GitHub sign-in) gives you access to the latest binary but only one concurrent session. Pro supports higher concurrency, priority access to new patches, and hands-on support, and costs money. Older binaries (e.g., Chromium 146) are free to download but may not pass latest detection.
How do I set up a proxy?
Pass proxy="http://user:pass@host:port" or proxy="socks5://..." to launch(). You can also use geoip=True to automatically adjust timezone and locale to match the proxy IP.
Why am I still blocked on some sites?
Ensure you are using the latest version, a residential proxy, geoip=True, headless=False, and humanize=True. On Linux, installing necessary fonts (like Noto Color Emoji and Windows fonts) may help pass strict detections.
Does it support persistent sessions?
Yes, use launch_persistent_context() to save cookies and localStorage, avoiding incognito detection.

Related agents