DNS
We will show how we can manually and with tools gather DNS information about an target network and use it to give us an inside how the network works.
Tools
host
host www.megacorpone.comhost -t txt www.megacorpone.comBase One-Liner for Host Enumeration
for ip in $(cat list.txt); do host $ip.megacorpone.com; donednsrecon
dnsrecon -d megacorpone.com -t stddnsrecon -d <domain> -D ~/list.txt -t brtdnsenum
dnsenum megacorpone.comnslookup
nslookup -type=TXT lab.htb <dns-server>Websites
Last updated