mirror of
https://github.com/CloakHQ/CloakBrowser.git
synced 2026-06-23 11:41:46 +02:00
- Remove --enable-automation via ignore_default_args (matches agent-browser Playwright patch — fixes connectionRTT, enables --fingerprint-* flags) - Randomize fingerprint seed per launch (unique canvas/WebGL/audio per session) - Change default GPU to RTX 3070 (higher market share = better blending) - Rewrite stealth_test.py with JS evaluation for 6 detection sites - Add --proxy flag to test script for Helper VPS routing - All 6/6 tests passing (verified on VPS with v142 binary)
30 lines
735 B
Python
30 lines
735 B
Python
"""cloakbrowser — Stealth Chromium that passes every bot detection test.
|
|
|
|
Drop-in Playwright replacement with source-level fingerprint patches.
|
|
|
|
Usage:
|
|
from cloakbrowser import launch
|
|
|
|
browser = launch()
|
|
page = browser.new_page()
|
|
page.goto("https://protected-site.com")
|
|
browser.close()
|
|
"""
|
|
|
|
from .browser import launch, launch_async, launch_context
|
|
from .config import CHROMIUM_VERSION, get_default_stealth_args
|
|
from .download import binary_info, clear_cache, ensure_binary
|
|
from ._version import __version__
|
|
|
|
__all__ = [
|
|
"launch",
|
|
"launch_async",
|
|
"launch_context",
|
|
"ensure_binary",
|
|
"clear_cache",
|
|
"binary_info",
|
|
"CHROMIUM_VERSION",
|
|
"get_default_stealth_args",
|
|
"__version__",
|
|
]
|