Skip to content

Latest commit

 

History

History
29 lines (25 loc) · 726 Bytes

ffuf.md

File metadata and controls

29 lines (25 loc) · 726 Bytes

image

Install

Example Usage

ffuf -w /path/to/wordlist -u https://target/FUZZ

GET parameter fuzzing

ffuf -w /path/to/paramnames.txt -u https://target/script.php?FUZZ=test_value -fs 4242
fuff -w /path/to/values.txt -u https://target/script.php?valid_name=FUZZ -fc 401

POST data fuzzing

ffuf -w /path/to/postdata.txt -X POST -d "username=admin\&password=FUZZ" -u https://target/login.php -fc 401

Set Maximum Execution Time

ffuf -w /path/to/wordlist -u https://target/FUZZ -maxtime 60