Web discovery/fuzzing
Compilation of all the tools I have worked and experimented with for web fuzzing.
ffuf
$ ffuf -w <path_to_wordlist> -u <http_url_with_fuzz_keyword> -X <http_method>
# eg.
$ ffuf -w ~/wordlists/wordlist.txt -u http://domain.com/FUZZ -X POST# eg. with multiple -w flags
$ ffuf -w <path_to_wordlist_1>:FUZZ1 -w <path_to_wordlist_2>:FUZZ2 -H "content-type:application/x-www-form-urlencoded" -d "key1=FUZZ1&key2=FUZZ2"
# eg. with a single -w flag
$ ffuf -w <path_to_wordlist_1>:FUZZ1,<path_to_wordlist_2>:FUZZ2 -H "content-type:application/x-www-form-urlencoded" -d "key1=FUZZ1&key2=FUZZ2"Other useful flags
gobuster
Usage
wfuzz
Useful wordlist
Last updated