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

推荐订阅源

Hugging Face - Blog
Hugging Face - Blog
GbyAI
GbyAI
Engineering at Meta
Engineering at Meta
有赞技术团队
有赞技术团队
博客园 - 【当耐特】
H
Hackread – Cybersecurity News, Data Breaches, AI and More
WordPress大学
WordPress大学
博客园_首页
美团技术团队
H
Help Net Security
MongoDB | Blog
MongoDB | Blog
宝玉的分享
宝玉的分享
大猫的无限游戏
大猫的无限游戏
小众软件
小众软件
J
Java Code Geeks
A
About on SuperTechFans
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
IT之家
IT之家
T
The Blog of Author Tim Ferriss
Microsoft Azure Blog
Microsoft Azure Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
B
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
Why your reCAPTCHA v3 score is low — and how to actually ...
Bassem Shahin · 2026-06-25 · via DEV Community
Cover image for Why your reCAPTCHA v3 score is low — and how to actually raise it

Bassem Shahin

Why your reCAPTCHA v3 score is low — and how to actually raise it

reCAPTCHA v3 is the one that never shows a checkbox or a puzzle. Instead it watches the whole session and hands the site a score from 0.0 to 1.0 — roughly "how human does this look." The site then decides what to do with it (allow, step up, block) based on its own threshold. So when your automation "fails reCAPTCHA v3," there's nothing to click — you're just scoring too low. The fix is understanding what it scores.

What v3 is actually scoring

v3 doesn't test whether you can solve something. It builds a risk score from signals across the page load and session:

  • IP reputation — datacenter ranges score low almost by default; residential/mobile score higher.

  • Browser fingerprint — navigator.webdriver, headless/automation tells, missing or inconsistent client-hints, a TLS/JA3 that doesn't match the UA you claim.

  • Behavior + history — mouse movement, timing, whether you have Google cookies / a browsing history, how you arrived at the page.

  • The action parameter — v3 tags each execution with an action (e.g. login); a mismatch or a generic action looks off.

The key mental model: a low score is a "you look automated" verdict, assembled before you ever submit. There's no token to "solve" your way past it — you raise the score or you produce a token that already scores high.

Why yours is low (the usual suspects)

  • Running from a datacenter IP (AWS/GCP/cloud) — the single biggest score killer.

  • Default Selenium/Playwright — leaks navigator.webdriver + CDP/headless artifacts.

  • A cold session — no cookies, no history, straight to the protected action.

  • Machine-speed behavior — instant navigation/clicks, no human-ish timing.

  • Fingerprint mismatch — a Chrome UA over a Pythonrequests TLS fingerprint, or a geo/timezone that disagrees with the IP.

How to actually raise it

  1. Fix the IP first — residential/mobile, geo-consistent with the rest of the profile. This alone moves the score the most.

  2. Kill the automation tells — a stealth/patched browser (or a real one) so navigator.webdriver is false, client-hints are consistent, and the TLS fingerprint matches the UA.

  3. Warm the session — keep cookies, do a little real navigation before the scored action, don't jump straight to the endpoint.

  4. Human-ish behavior — realistic timing and interaction, not perfect machine cadence.

  5. Use the right action — match the action the site expects for that step.

For automation that still scores too low after the fundamentals, the practical route is to fetch a token from a solving service that produces high-scoring v3 tokens, then submit it. One important nuance people miss: the minimum score is set by the target site, not by you or the solver — so you can't "request 0.9"; you produce the best token possible and the site's threshold decides. Getting the fundamentals right is what makes that token land above their cutoff.


import requests, time

API_KEY, SITEKEY, PAGEURL = "YOUR_API_KEY", "6Lc...", "https://target.example/login"

rid = requests.post("https://ocr.captchaai.com/in.php", data={

    "key": API_KEY, "method": "userrecaptcha",

    "version": "v3", "action": "login",

    "googlekey": SITEKEY, "pageurl": PAGEURL, "json": 1,

}).json()["request"]

token = None

for _ in range(40):

    time.sleep(3)

    res = requests.get("https://ocr.captchaai.com/res.php", params={

        "key": API_KEY, "action": "get", "id": rid, "json": 1}).json()

    if res["status"] == 1:

        token = res["request"]; break

# submit token as g-recaptcha-response for the matching action

TL;DR

  • v3 gives a 0.0–1.0 score, not a puzzle — a low score means "looks automated," assembled from IP + fingerprint + behavior.

  • Biggest levers, in order: residential geo-matched IP → no automation fingerprint → warm session → human-ish behavior → correct action.

  • The site sets the min-score threshold, not you — so fix the fundamentals; a token only lands if the rest looks legit.


If you want to test the token flow against your own target, CaptchaAI returns reCAPTCHA v3 tokens (with action) and is 2Captcha-API-compatible, so an existing client is mostly a base-URL change — the trial is free (3 days, no card).