Directory discovery Vhosts discovery Custom extensions Recursion Proxy
Copy ffuf -u http://10.10.10.10/FUZZ -w raft-large-words.txt
Copy ffuf -u http://10.10.10.10 -H "Host: FUZZ.domain" -w raft-large-words.txt
Copy ffuf -u http://10.10.10.10/FUZZ -e .php,.bak,.asp -w raft-large-words.txt
Copy ffuf -u http://10.10.10.10/FUZZ -recursion -w raft-large-words.txt
Copy ffuf -u http://10.10.10.10/FUZZ -recursion -recursion-depth 1 -w raft-large-words.txt
Copy ffuf -u http://10.10.10.10/FUZZ -x http://127.0.0.1:8080 -w raft-large-words.txt
HTTP status codes Amount of lines Response size Amount of word Regexp
Ignore 403 & 404 status code from the response.
Copy ffuf -u http://10.10.10.10/FUZZ -fc 404,403 -w raft-large-words.txt
Match with status code 200.
Copy ffuf -u http://10.10.10.10/FUZZ -mc 200 -w raft-large-words.txt
Ignore responses with 38 lines.
Copy ffuf -u http://10.10.10.10/FUZZ -fl 38 -w raft-large-words.txt
Match with responses that have 24 lines.
Copy ffuf -u http://10.10.10.10/FUZZ -ml 24 -w raft-large-words.txt
Ignores responses that have a size of 500 characters.
Copy ffuf -u http://10.10.10.10/FUZZ -fs 500 -w raft-large-words.txt
Match with responses that have a size of 33 characters.
Copy ffuf -u http://10.10.10.10/FUZZ -ms 33 -w raft-large-words.txt
Ignore responses with 55 words.
Copy ffuf -u http://10.10.10.10/FUZZ -fw 55 -w raft-large-words.txt
Match with responses that have 22 words.
Copy ffuf -u http://10.10.10.10/FUZZ -mw 22 -w raft-large-words.txt
Ignores responses that contain the word "template".
Copy ffuf -u http://10.10.10.10/FUZZ -fr "template" -w raft-large-words.txt
Match with responses that contain the word "password".
Copy ffuf -u http://10.10.10.10/FUZZ -mr "password" -w raft-large-words.txt
Write output to file File formats Directory Log
Copy ffuf -u http://10.10.10.10/FUZZ -o ffuf.txt -w raft-large-words.txt
Store each request and response in the ffuf-output folder.
Copy ffuf -u http://10.10.10.10/FUZZ -od ffuf-output -w raft-large-words.txt
Write all of the internal logging to the debug.txt file.
Copy ffuf -u http://10.10.10.10/FUZZ -debug-log debug.txt -w raft-large-words.txt