What problem does it solve?
During authorized penetration tests, captchas on login, registration, password reset, and SMS-sending endpoints block automated testing and brute-force validation, requiring a structured methodology to identify, recognize, or bypass them.
Core Features & Use Cases
- Captcha Type Identification: Classify image character captchas, click-based captchas, slider puzzles, and arithmetic/Chinese question captchas, each mapped to a matching bypass strategy.
- Automated Recognition: Apply OCR (tesseract) or third-party captcha-solving platforms, parse click coordinates for click captchas, and generate drag trajectories for slider captchas.
- Logic Bypass Techniques: Test captcha reuse, response/JS echo of codes, empty or removed captcha parameters, universal codes, concurrent replay after validation, and frontend-only validation.
- Use Case: While testing a login endpoint protected by a 4-digit image captcha, first check whether the code can be reused or omitted; if not, pipe the image through OCR and automate login attempts while rotating IPs to evade rate limits.
Quick Start
Analyze the captcha on this login endpoint and determine whether it can be bypassed logically or solved automatically with OCR.