Skip to content
Tech News
← Back to articles

Captcha proves you're human. HATCHA proves you're not

read original more articles
Why This Matters

HATCHA introduces a novel reverse CAPTCHA system that challenges AI agents with tasks difficult for humans, enhancing security and bot detection. Its server-side verification and extensible design make it a flexible tool for developers aiming to distinguish between human users and automated bots, which is increasingly vital as AI-generated content proliferates.

Key Takeaways

HATCHA

CAPTCHA proves you're human. HATCHA proves you're not.

HATCHA (Hyperfast Agent Test for Computational Heuristic Assessment) is a reverse CAPTCHA that gates access behind challenges trivial for AI agents but painful for humans — large-number multiplication, string reversal, binary decoding, and more.

Server-side verification — answers never reach the client. HMAC-signed tokens, stateless, no database required.

— answers never reach the client. HMAC-signed tokens, stateless, no database required. 5 built-in challenge types — math, string reversal, character counting, sorting, binary decode.

— math, string reversal, character counting, sorting, binary decode. Extensible — register custom challenge generators at runtime.

— register custom challenge generators at runtime. Themeable — dark, light, or auto mode via CSS custom properties.

— dark, light, or auto mode via CSS custom properties. Framework adapters — Next.js App Router and Express middleware out of the box.

Quickstart (Next.js)

1. Install

... continue reading