Information Gathering Web Edition Module Cheat Sheet
Information Gathering Web Edition Module Cheat Sheet
Information Gathering Web Edition Module Cheat Sheet
CHEAT SHEET
WHOIS
Command Description
DNS Enumeration
Command Description
nslookup -query=A $TARGET Identify the A record for the target domain.
dig $TARGET @<nameserver/IP> Identify the A record for the target domain.
dig a $TARGET @<nameserver/IP> Identify the A record for the target domain.
nslookup -query=PTR <IP> Identify the PTR record for the target IP address.
dig -x <IP> @<nameserver/IP> Identify the PTR record for the target IP address.
nslookup -query=ANY $TARGET Identify ANY records for the target domain.
dig any $TARGET @<nameserver/IP> Identify ANY records for the target domain.
Command Description
nslookup -query=TXT $TARGET Identify the TXT records for the target domain.
dig txt $TARGET @<nameserver/IP> Identify the TXT records for the target domain.
nslookup -query=MX $TARGET Identify the MX records for the target domain.
dig mx $TARGET @<nameserver/IP> Identify the MX records for the target domain.
Resource/Command Description
VirusTotal https://www.virustotal.com/gui/home/url
Censys https://censys.io/
Crt.sh https://crt.sh/
curl -s https://sonar.omnisint.io/all/{domain} | jq - All results across all TLDs for a given domain.
r '.[]' | sort -u
cat sources.txt | while read source; do theHarvester Searching for subdomains and other
-d "${TARGET}" -b $source -f information on the sources provided in the
"${source}-${TARGET}";done
source.txt list.
Sources.txt
baidu
bufferoverun
crtsh
hackertarget
otx
projecdiscovery
rapiddns
sublist3r
threatcrowd
trello
urlscan
vhost
virustotal
zoomeye
Resource/Command Description
Netcraft https://www.netcraft.com/
WayBackMachine http://web.archive.org/
WayBackURLs https://github.com/tomnomnom/waybackurls
waybackurls -dates https://$TARGET > Crawling URLs from a domain with the date it was
waybackurls.txt obtained.
Resource/Command Description
Wappalyzer https://www.wappalyzer.com/
Aquatone https://github.com/michenriksen/aquatone
Resource/Command Description
cat subdomain.list | aquatone -out ./aquatone - Makes screenshots of all subdomains in the
screenshot-timeout 1000 subdomain.list.
Resource/Command Description
HackerTarget https://hackertarget.com/zone-transfer/
SecLists https://github.com/danielmiessler/SecLists
nslookup -type=any -query=AXFR $TARGET Zone Transfer using Nslookup against the
nameserver.target.domain target domain and its nameserver.
Virtual Hosts
Resource/Command Description
cat ./vhosts.list | while read vhost;do echo "\n********\nFUZZING: Bruteforcing for possible
${vhost}\n********";curl -s -I http://<IP address> -H "HOST: virtual hosts on the target
${vhost}.target.domain" | grep "Content-Length: ";done
domain.
Crawling
Resource/Command Description
ZAP https://www.zaproxy.org/