CloakBrowser: Stealth Chromium for Unblockable Web Scraping and Automation

This repository profile is provided by osrepos.com, an open source repository discovery platform.

CloakBrowser: Stealth Chromium for Unblockable Web Scraping and Automation

Summary

CloakBrowser is a powerful, open-source stealth Chromium browser engineered to bypass advanced bot detection systems. It achieves unparalleled stealth through C++ source-level fingerprint patches, making it appear as a normal browser and passing over 30 detection tests. Designed as a drop-in replacement for Playwright and Puppeteer, it simplifies web automation for AI agents, web scraping, and more.

Repository Information

Analyzed by OSRepos on May 27, 2026

Topics

Click on any tag to explore related repositories

Use at your own risk

OSRepos shares public repositories for knowledge and discovery only. Any installation, execution, configuration, or use of code from these repositories is the user's own responsibility. Always review the repository, source code, dependencies, licenses, and security implications before running or installing anything. OSRepos is not responsible for issues, damages, or losses resulting from third-party repositories.

Introduction

CloakBrowser is a cutting-edge stealth Chromium browser that consistently passes every bot detection test. Unlike other tools that rely on JavaScript injections or configuration tweaks, CloakBrowser modifies Chromium's C++ source code to patch fingerprints at the binary level. This means anti-bot systems perceive it as a genuine, unautomated browser, achieving a perfect 30/30 score in detection tests. It offers a seamless, drop-in replacement for Playwright and Puppeteer, allowing developers to unblock their automation tasks in minutes with just a few lines of code.

Installation

Getting started with CloakBrowser is straightforward, with packages available for both Python and JavaScript environments.

Python:

pip install cloakbrowser

JavaScript / Node.js:

# With Playwright
npm install cloakbrowser playwright-core

# With Puppeteer
npm install cloakbrowser puppeteer-core

Upon the first launch, the stealth Chromium binary, approximately 200MB, is automatically downloaded and cached locally.

Examples

CloakBrowser maintains the familiar Playwright and Puppeteer APIs, making integration effortless. Here are basic examples for Python and JavaScript:

Python:

from cloakbrowser import launch

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

For human-like interactions, simply add humanize=True:

browser = launch(humanize=True)
page = browser.new_page()
page.goto("https://example.com")
page.locator("#email").fill("user@example.com") # per-character timing, thinking pauses
page.locator("button[type=submit]").click()       # Bézier curve, realistic aim point
browser.close()

JavaScript (Playwright):

import { launch } from 'cloakbrowser';

const browser = await launch();
const page = await browser.newPage();
await page.goto('https://example.com');
await browser.close();

Why Use CloakBrowser

CloakBrowser stands out from other stealth solutions due to its fundamental approach to bypassing bot detection:

  • Source-Level Patches: Instead of easily detectable JavaScript injections or config-level tweaks, CloakBrowser's 58+ fingerprint patches are compiled directly into the Chromium binary. This makes it significantly more robust and resistant to updates that often break other stealth tools.
  • Unmatched Detection Scores: It achieves a 0.9 reCAPTCHA v3 score, passes Cloudflare Turnstile, FingerprintJS, and BrowserScan, demonstrating superior stealth capabilities compared to playwright-stealth or undetected-chromedriver.
  • Seamless Integration: It's a true drop-in replacement for Playwright and Puppeteer, requiring minimal code changes to integrate into existing automation workflows.
  • Human-like Behavior: The humanize=True flag enables realistic mouse movements, keyboard typing, and scroll patterns, further enhancing its ability to evade behavioral detection.
  • Free and Open Source: CloakBrowser offers enterprise-grade stealth without subscriptions or usage limits.

Links

Related repositories

Similar repositories that may be relevant next.

text-to-cad: AI Agent Skills for CAD, CAE, and CAM Workflows

text-to-cad: AI Agent Skills for CAD, CAE, and CAM Workflows

September 24, 2026

text-to-cad is a comprehensive Python library developed by earthtojake, providing a rich set of agent skills for Computer-Aided Design (CAD), Computer-Aided Engineering (CAE), and Computer-Aided Manufacturing (CAM). It enables AI agents to generate, inspect, source, slice, and manage CAD and robot-description artifacts, streamlining complex engineering processes.

agentsai-agentscad
dcc-mcp-blender: AI-Driven 3D Workflows with an Embedded MCP Server

dcc-mcp-blender: AI-Driven 3D Workflows with an Embedded MCP Server

September 24, 2026

dcc-mcp-blender is a powerful Blender addon that integrates an embedded Streamable HTTP MCP server directly into Blender. This allows any MCP-compatible AI client to seamlessly control and automate your 3D modeling, animation, and rendering workflows. It offers over 200 pre-built tools and an extensible skill system for robust production environments.

blenderaiai-agents
Guaardvark: Your Self-Hosted AI Studio for Agents, Media, and Code

Guaardvark: Your Self-Hosted AI Studio for Agents, Media, and Code

September 21, 2026

Guaardvark is a comprehensive, self-hosted AI studio designed for local execution of advanced AI tasks. It integrates coding agents, media generation (video, image, music, voice), and robust RAG capabilities, all running on a single GPU. This platform prioritizes privacy and user control, enabling a full AI workstation experience on your own hardware.

aiai-agentsself-hosted
AgentsKit: The Complete JavaScript Toolkit for Building AI Agents

AgentsKit: The Complete JavaScript Toolkit for Building AI Agents

September 20, 2026

AgentsKit is a comprehensive JavaScript toolkit designed for building AI agents, offering a lightweight core and a modular ecosystem. It provides essential components like UIs, autonomous runtime, tools, memory, and RAG, enabling developers to create sophisticated agents from simple chat interfaces to complex autonomous systems. This framework aims to simplify agent development by offering composable parts and avoiding the need to glue multiple incompatible libraries together.

agent-frameworkai-agentstypescript

Source repository

Open the original repository on GitHub.

26 counted GitHub visits

View on GitHub
OS
OSRepos

Analysis and discovery of open source repositories. Find interesting projects and follow their updates.

Monitor your website with YourWebsiteScore

OSRepos shares public repositories for knowledge and discovery only. Any installation, execution, configuration, or use of third-party repository code is at your own risk. Always review source code, dependencies, licenses, and security implications before running anything.

© 2025 OSRepos. Built with Nuxt 3 and lots of ❤️