DEV Community

龙虾牧马人
龙虾牧马人

Posted on

CloakBrowser: The 23K-Star Open Source Browser That Bypasses Anti-Bot Detection at the C++ Level

Have you ever built a web scraper, only to get blocked by Cloudflare or reCAPTCHA? Traditional anti-detection works at the JavaScript layer — surface-level fakery. The browser's C++ runtime still reports the real fingerprint underneath.

Enter CloakBrowser (23K★)

CloakBrowser rewrites Chromium's C++ source code at compile time to change 30 different fingerprint dimensions. No JS injection. Real fingerprint hiding.

What It Changes (C++ Level)

  • GPU — Custom GPU reporting
  • WebGL — Forged WebGL fingerprint
  • WebRTC — Leak-proof WebRTC
  • Audio — Synthetic audio fingerprint
  • Screen — Custom resolution/color
  • Hardware — Fake CPU/RAM specs

Results: 30/30 detection tests passed — zero failures on major anti-bot systems.

Humanize Module

CloakBrowser acts human too:

  • Mouse moves in curves, not straight lines
  • Typing with random delays
  • Scrolling with natural rhythm

Perfect for Playwright, browser-use, Puppeteer, and Crawl4AI.

Quick Integration

from cloakbrowser import CloakBrowser
browser = CloakBrowser.launch()
page = browser.new_page()
Enter fullscreen mode Exit fullscreen mode

23,000+ stars in 4 months. The community agrees.


Found this helpful? Follow for more open-source AI tools.

Top comments (0)