Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 892 Bytes

Information Gathering.md

File metadata and controls

29 lines (20 loc) · 892 Bytes

Information Gathering

Virtual Host (VHost Enumeration)

Wordlists

/usr/share/wordlists/seclists/Discovery/DNS/subdomains-top1million-5000.txt
/usr/share/wordlists/seclists/Discovery/DNS/dns-Jhaddix.txt

Commands

#ffuf (-fs: filter out all the responses of that size)
ffuf -u http://example.com/ -H "Host: FUZZ.example.com" -w wordlist.txt -fs 1234

# (-r: follow redirect)
ffuf -u http://example.com/ -H "Host: FUZZ.example.com" -w wordlist.txt -fs 1234 -r

# Sometimes, we have to specify the ip address not domain.
ffuf -u http://10.0.0.1/ -H "Host: FUZZ.example.com" -w wordlist.txt -fs 1234

# wfuzz
wfuzz -u http://example.com -H "Host: FUZZ.example.com" -w wordlist.txt --hl 138

# gobuster (Pattern file includes something like: {GOBUSTER}.inlanefreight.htb)
gobuster vhost -u http://10.129.118.153 -w namelist.txt -p pattern --exclude-length 301 -t 10