What problem does it solve? Web penetration testers need to discover hidden directories, files, subdomains, parameters, and API endpoints quickly, but raw fuzzing output is often flooded with false positives and authenticated requests are hard to configure on the command line. ## Core Features & Use Cases - Comprehensive ffuf command guidance: Covers directory discovery, subdomain enumeration, parameter fuzzing, POST data fuzzing, header fuzzing, and multi-wordlist modes (clusterbomb, pitchfork, sniper). - Authenticated fuzzing via raw requests: Explains how to capture full HTTP requests with JWT tokens, session cookies, or API keys into a req.txt file and fuzz them with ffuf --request, with ready-made templates for common auth scenarios. - Result analysis and helper tooling: Includes a Python helper script that analyzes ffuf JSON output for anomalies, generates req.txt templates, and creates number-based wordlists for IDOR testing. - Use Case: During an authorized web application assessment, you capture an authenticated API request from Burp Suite, insert the FUZZ keyword at the user ID parameter, and run ffuf with auto-calibration to test for IDOR vulnerabilities across thousands of IDs. ## Quick Start Ask the assistant to show you how to fuzz directories on a target web application using ffuf with auto-calibration and an appropriate SecLists wordlist.