ffuf wfuzz feroxbuster gobuster

gobuster

# directory mode
gobuster dir -u IP -w WORDLIST -x EXTENSION -t 70

# vhosts mode
# try -r if need to use wildcard
gobuster vhost -u DOMAIN|IP -w WORDLIST -t 100 [-r]
gobuster dns -d DOMAIN -w [/usr/share/seclists/Discovery/DNS/subdomains-top1million-110000.txt] -t 30

# proxy
--proxy scheme://IP:PORT (ex. socks5://127.0.0.1:6900)

wfuzz

# directory mode
wfuzz -c -t 60 -w WORDLIST -u IP/FUZZ [-b COOKIE] [-d POST-DATA] [-H HEADER] [-z TYPE,PAYLOAD]
wfuzz -c -z file,WORDLIST [flags] [-d POST-DATA] [URL/FUZZ | URL?param=FUZZ]
-c: show output in color
-z: alias for -z file,WORDLIST; can do -z range,1-100

# vhosts mode
wfuzz -c -w WORDLIST -u DOMAIN -H "HOST: FUZZ.DOMAIN" [--hh ignore-errors-chars]

--hc: status code to ignore
--hw: word length to ignore
--hh: char length to ignore
--hl: line length to ignore

ffuf

feroxbuster

Last updated

Was this helpful?