Ffuf

ffuf is a fest web fuzzer written in Go that allows typical directory discovery, virtual host discovery (without DNS records) and GET and POST parameter fuzzing.

General Usage

ffuf -u http://10.10.10.10/FUZZ -w raft-large-words.txt

Filters & Matchers

Ignore 403 & 404 status code from the response.

ffuf -u http://10.10.10.10/FUZZ -fc 404,403 -w raft-large-words.txt

Match with status code 200.

ffuf -u http://10.10.10.10/FUZZ -mc 200 -w raft-large-words.txt

Input

ffuf -request login.req -request-proto http -w raft-large-words.txt

Output

ffuf -u http://10.10.10.10/FUZZ -o ffuf.txt -w raft-large-words.txt

References

Last updated