惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

D
DataBreaches.Net
N
Netflix TechBlog - Medium
P
Proofpoint News Feed
D
Docker
J
Java Code Geeks
L
LangChain Blog
Microsoft Security Blog
Microsoft Security Blog
The GitHub Blog
The GitHub Blog
I
InfoQ
Stack Overflow Blog
Stack Overflow Blog
云风的 BLOG
云风的 BLOG
Engineering at Meta
Engineering at Meta
MongoDB | Blog
MongoDB | Blog
月光博客
月光博客
T
Tailwind CSS Blog
M
MIT News - Artificial intelligence
Blog — PlanetScale
Blog — PlanetScale
Google DeepMind News
Google DeepMind News
腾讯CDC
罗磊的独立博客
U
Unit 42
爱范儿
爱范儿
Vercel News
Vercel News
MyScale Blog
MyScale Blog

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
We patched Chromium with 49 C++ hooks to beat Cloudflare ...
so1 · 2026-05-29 · via DEV Community

so1

Body:

Every web scraper hits the same wall: Cloudflare.

You rotate IPs. You spoof headers. You use Playwright's stealth plugin. And Cloudflare still blocks you — because it checks things no JavaScript library can fake: WebGL renderer fingerprint, font enumeration,

audio context, hardware concurrency, Canvas2D image data, WebRTC local IPs, and more.

BrowserHand takes a different approach — C++ hooks at the Chromium binary level.

Instead of patching JavaScript objects at runtime (which Cloudflare can detect), we patched the browser engine itself. 49 hooks across 12 subsystems:

  • GPU: Forced WebGL vendor/renderer strings at the driver layer
  • Fonts: Controlled which system fonts the browser exposes
  • Audio: Faked audio context fingerprint at the OS level
  • Network: Spoofed WebRTC IPs before the JS runtime could read them
  • Canvas: Injected noise into Canvas2D/SVG fingerprinting reads
  • Timing: Normalized JS timer precision to match real hardware profiles

The result: same browser, same IP, same everything — but the fingerprint looks like a real Windows/Chrome user in Dallas, Texas.

After 6 months of production use across 200+ sites:

┌──────────────────────────┬─────────────────────────────┬─────────────────────┐

│ Metric │ Before (Playwright stealth) │ After (BrowserHand) │

├──────────────────────────┼─────────────────────────────┼─────────────────────┤

│ Cloudflare bypass rate │ 34% │ 92% │

├──────────────────────────┼─────────────────────────────┼─────────────────────┤

│ reCAPTCHA v3 pass rate │ 28% │ 87% │

├──────────────────────────┼─────────────────────────────┼─────────────────────┤

│ Average session lifetime │ 12 min │ 4+ hours │

├──────────────────────────┼─────────────────────────────┼─────────────────────┤

│ Detection rate │ 66% flagged │ <8% flagged │

└──────────────────────────┴─────────────────────────────┴─────────────────────┘

It's not a SaaS. It's a Go binary you run locally. No cloud dependency, no logs leaving your machine.

If you're fighting Cloudflare, reCAPTCHA, or any bot detection system — the approach matters more than the tool. Binary-level patching beats JS-level stealth every time.

For implementation details and licensing: 16208204@qq.com