What problem does it solve? Configuring ffuf correctly for web fuzzing is error-prone: without auto-calibration, results drown in false positives, and authenticated fuzzing with complex headers, cookies, or JWT tokens is difficult to express with command-line flags alone. ## Core Features & Use Cases - Fuzzing Command Guidance: Provides tested ffuf command patterns for directory discovery, subdomain enumeration, parameter fuzzing, POST data fuzzing, and header fuzzing, always with auto-calibration (-ac). - Authenticated Fuzzing via Raw Requests: Explains how to capture full HTTP requests into a req.txt file and fuzz them with --request, covering JWT, OAuth, session cookies, and API keys. - Result Analysis Helper: Includes a Python script that analyzes ffuf JSON output for status code anomalies, unusual response sizes, and interesting endpoints like admin, api, or .git paths. - Use Case: During an authorized penetration test, ask for help fuzzing an authenticated API endpoint; the skill produces a req.txt template, the correct ffuf command with rate limiting, and then analyzes the JSON results for anomalies. ## Quick Start Ask the assistant to fuzz hidden directories on an authorized target like https://example.com using ffuf with auto-calibration and save the results to a JSON file.