pip3 install wfuzz
wfuzz -w <wordlist.txt> http://example.com/FUZZ #Login bruteforce wfuzz -z file,users.txt -d "username=FUZZ&password=FUZZ" http://example.com #Basic auth wfuzz -z file,users.txt --basic FUZZ:FUZZ http://example.com/FUZZ
https://book.hacktricks.xyz/pentesting-web/web-tool-wfuzz
https://github.com/xmendez/wfuzz
https://wfuzz.readthedocs.io/en/latest/
Last updated 7 months ago