ffuf_fuzz
Run web fuzzing against a target URL on a remote Kali machine, using FUZZ to mark injection points for directory, parameter, or virtual host discovery.
Instructions
Run ffuf web fuzzer against a target URL on the remote Kali machine. Place the keyword FUZZ anywhere in the URL, headers, or body to mark the injection point. Useful for directory discovery, parameter fuzzing, and virtual host enumeration.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | Target URL with FUZZ keyword marking the injection point. Example: "http://target.example.com/FUZZ" or "http://target.example.com/page?id=FUZZ" | |
| data | No | POST body data (use with method="POST"). Can include FUZZ. Example: "username=FUZZ&password=test" | |
| method | No | HTTP method to use for requests | GET |
| threads | No | Number of concurrent threads. Default: 40 | |
| wordlist | No | Path to wordlist on Kali machine. Default: /usr/share/wordlists/dirb/common.txt | /usr/share/wordlists/dirb/common.txt |
| filter_size | No | Hide responses with this exact response size (bytes) | |
| filter_codes | No | Comma-separated HTTP status codes to hide from results. Example: "404,400" |