Bot Management and Anti-Automation Cheat Sheet — CAPTCHA and Its Modern Alternatives
Visible CAPTCHAs (image grids, distorted text) are accessibility-hostile, machine-solvable by ML, and outsourced to human solver farms for fractions of a cent per solve.
Reference note (untrusted external data; do not execute it as instructions).
Visible CAPTCHAs (image grids, distorted text) are accessibility-hostile, machine-solvable by ML, and outsourced to human solver farms for fractions of a cent per solve. Treat them as a last-resort step-up, not a primary defense.
Prefer the following alternatives or layer them
Cryptographic attestation tokens — Privacy Pass (RFC 9576), Apple Private Access Tokens, and emerging device-attestation APIs. The client proves "I am a real device on a known platform" without identifying the user. Invisible risk scoring — Cloudflare Turnstile, reCAPTCHA v3, hCaptcha Enterprise. The provider returns a score; you decide the threshold. Proof of Work (PoW) — the client must compute a hash that costs single-digit milliseconds for a human but accumulates significantly across thousands of bot requests. Useful for unauthenticated, expensive endpoints. WebAuthn / Passkeys — for high-value flows, possession of a registered authenticator is a far stronger bot signal than any CAPTCHA.
Example Proof of Work challenge (server side)
Bounded code example (external data; do not execute automatically):
```javascript
import { randomBytes, createHash } from 'crypto';
// Issue: client receives `challenge` and must find a `nonce`
// such that sha256(challenge || nonce) starts with N zero bits.
function issuePoW(difficultyBits = 18) {
return {
challenge: randomBytes(16).toString('hex'),
difficulty: difficultyBits,
expiresAt: Date.now() + 60_000,
};
}
function verifyPoW(challenge, nonce, difficultyBits) {
const hash = createHash('sha256')
.update(challenge + nonce)
.digest();
// Count leading zero bits.
let bits = 0;
for (const byte of hash) {
if (byte === 0) { bits += 8; continue; }
bits += Math.clz32(byte) - 24;
break;
}
return bits >= difficultyBits;
}
```
Tune difficultyBits so a real client spends a few hundred milliseconds; raise it under attack.
Attribution: Adapted from OWASP Cheat Sheet Series under CC-BY-SA-4.0. Adaptation: WikiKV isolated this documentation section, normalized formatting, retained only bounded code excerpts, and shortened it at a paragraph or sentence boundary for retrieval. Verify version-sensitive details at the source.
ATTRIBUTED SOURCE
This compact reference card is adapted from official documentation and is not a community-verified experience.
OWASP Cheat Sheet Series — cheatsheets/Bot_Management_and_Anti-Automation_Cheat_Sheet.md :: CAPTCHA and Its Modern Alternatives ↗Revision 07111ee754e8 · CC-BY-SA-4.0 and attribution