FFUF Notes
FFUF Notes
FFUF Notes
ffuf -c -w /home/belisarius/WORDLISTS/federal_reserve/total_wordlist -u
http://philfrb.org/FUZZ -replay-proxy http://127.0.0.1:8080 -recursion
# Basic Usage
ffuf -w wordlist.txt -u http://127.0.0.1:8000/api/FUZZ/6 -o output.txt -replay-
proxy http://127.0.0.1:8080
# Adding a delay
ffuf -w wordlist.txt -u http://127.0.0.1:8000/api/FUZZ/6 -o output.txt -replay-
proxy http://127.0.0.1:8080 –p 1 –t 3
# Fuzzing 2 values
ffuf -w wordlist.txt:FUZZ -w actions-lowercase.txt:ME -u
http://127.0.0.1:8000/api/FUZZ/ME -o output.txt -replay-proxy http://127.0.0.1:8080
# Simple Filter
ffuf -w wordlist.txt:FUZZ -w actions-lowercase.txt:ME -u
http://127.0.0.1:8000/api/FUZZ/ME -o output.txt -replay-proxy http://127.0.0.1:8080
-fw 1
# Simple Matcher
ffuf -w wordlist.txt:FUZZ -w actions-lowercase.txt:ME -u
http://127.0.0.1:8000/api/FUZZ/ME -o output.txt -replay-proxy http://127.0.0.1:8080
-mc 302
# Custom Filters
ffuf -w wordlist.txt:FUZZ -w numbers.txt:ME -u http://127.0.0.1:8000/api/FUZZ/ME -o
output.txt -replay-proxy http://127.0.0.1:8080 -fr "not found"
ffuf -u http://W2/W1 -w
/home/belisarius/WORDLISTS/federal_reserve/total_wordlist:W1 -w
/home/belisarius/Bug_Hunting/federalreserve_com/active_subs2/new_domains:W2
-replay-proxy http://127.0.0.1:8080 -p 1 -t 3
ffuf -u http://W2/FUZZ -w
/home/belisarius/WORDLISTS/federal_reserve/total_wordlist:FUZZ -w
/home/belisarius/Bug_Hunting/federalreserve_com/active_subs2/new_domains:W2
-replay-proxy http://127.0.0.1:8080 -recursion -p 1 -t 3
ffuf -c -w /home/belisarius/WORDLISTS/federal_reserve/total_wordlist -u
http://philfrb.org/FUZZ -replay-proxy http://127.0.0.1:8080 -ac
ffuf -c -w /home/belisarius/WORDLISTS/federal_reserve/total_wordlist -u
http://philfrb.org/FUZZ -replay-proxy http://127.0.0.1:8080 -se
ffuf -h (good to read documentation to learn all flags which will help in mastery
and calibration.)
export GOROOT=/usr/local/go
export GOPATH=$HOME/go
export PATH=$GOPATH/bin:$GOROOT/bin:$PATH
echo 'export GOROOT=/usr/local/go' >> ~/.bash_profile
echo 'export GOPATH=$HOME/go'>> ~/.bash_profile
echo 'export PATH=$GOPATH/bin:$GOROOT/bin:$PATH' >> ~/.bash_profile
source ~/.bash_profile