Search Technical Information

Whois

Whois – Website Whois Search, Registered information in public databases, Get DNS servers (Name Servers), email of the admin, Get names, physical addresses, phone numbers, email addresses, ip addresses, dns server names

whois $DOMAIN

Reverse lookup

whois $IP

Subdomains

Use crt.sh (subdomains from certificates), sublist3r, GHDB.

dnspop list of subdomains: https://github.com/bitquark/dnspop/tree/master/results

Enumerate subdomains

NOTE: This interacts with the target when downloading the index page.

DOMAIN=x
wget -O index.html http://www.$DOMAIN
# This regex might need tweaking
grep -o 'href=.*http.*"' index.html | grep $DOMAIN | cut -d "/" -f 3 | sort -u
grep -o '[^/]*\.domain\.com' index.html | sort -u