mirror of
https://github.com/feder-cr/invisible_playwright.git
synced 2026-06-22 09:18:06 +02:00
feat: initial public release
Stealthfox — a patched Firefox 150.0.1 for browser-fingerprint stealth,
shipped as a Playwright-compatible Python wrapper.
* Sync + async Stealthfox launcher (firefox_user_prefs, virtual desktop
on Windows, SOCKS5 auth via patched nsProtocolProxyService)
* fpforge: Bayesian fingerprint sampler over GPU / audio / fonts /
screen / TCP options / ~400 other navigator fields
* WebRTC stealth: srflx address swap, synthetic srflx fallback,
private-LAN host candidates — no real public IP leak via STUN
* GPU sandbox fix for FF150 alt-desktop regression
* Bezier-curve mouse motion baked into Juggler
Targets Windows x86_64 + Linux x86_64. Binary fetched on first run from
GitHub Release "firefox-1".
This commit is contained in:
commit
60e55491ea
51 changed files with 10967 additions and 0 deletions
22
src/stealthfox/__init__.py
Normal file
22
src/stealthfox/__init__.py
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
"""stealthfox — Playwright wrapper for a patched Firefox with stealth profile.
|
||||
|
||||
Quickstart:
|
||||
|
||||
from stealthfox import Stealthfox
|
||||
|
||||
with Stealthfox() as browser: # random seed
|
||||
page = browser.new_page()
|
||||
page.goto("https://example.com")
|
||||
|
||||
with Stealthfox(seed=42) as browser: # deterministic
|
||||
...
|
||||
|
||||
with Stealthfox(humanize=True) as browser: # human-like cursor motion
|
||||
page = browser.new_page()
|
||||
page.click("#submit") # expanded into a Bezier trajectory
|
||||
"""
|
||||
from .launcher import Stealthfox
|
||||
from .constants import BINARY_VERSION, FIREFOX_UPSTREAM_VERSION
|
||||
|
||||
__version__ = "0.1.0"
|
||||
__all__ = ["Stealthfox", "BINARY_VERSION", "FIREFOX_UPSTREAM_VERSION", "__version__"]
|
||||
Loading…
Add table
Add a link
Reference in a new issue