Web Paths
fuff -w /usr/share/wordlists/seclists/Discovery/Web-Content/big.txt:FUZZ -u http://[TARGET_DOMAIN]/FUZZWeb Path FUZZ.
Virtual Host Fuzz
ffuf -w /usr/share/wordlists/seclists/Discovery/DNS/namelist.txt -H "Host: FUZZ.[TARGET_DOMAIN]" -u http://[TARGET_DOMAIN] -fs 2395Virtual Host FUZZ.
User Enumeration
ffuf -w /usr/share/wordlists/seclists/Usernames/Names/names.txt -X POST -d "username=FUZZ&email=x&password=x&cpassword=x" -H "Content-Type: application/x-www-form-urlencoded" -u http://[TARGET_DOMAIN]/signup -mr "username already exists"User Enumeration.
FUFF HTTP POST Form Brute Force
ffuf -w myUsersFile.txt:W1,/usr/share/wordlists/rockyou.txt:W2 -X POST -d "username=W1&password=W2" -H "Content-Type: application/x-www-form-urlencoded" -u http://[TARGET_IP]/login -fc 200Brute Force HTTP POST form with valid username.
Flags
-fsSize to filter (do not show response with this size).
-mrText on the page we are looking for to validate.
-wWordlist location.
-uSpecifies the URL.
-dData (fields) that we send.
-HAdd additional headers to the request.