DNS Enumeration
DNS Enumeration
dnsrecon -r 127.0.0.0/24 -n 10.1.1.12 -d domain | tee dnsrecon-result.txtdnsreconis used to gather DNS related information such as DNS records - dnsrecon | Kali Linux Tools-r 127.0.0.0/24- IP range which is used to do reverse DNS lookup. The IP range here are the IPs that you are trying to search for in the DNS records of the given Name Server.-n 10.1.1.12- It is the DNS server that you want to gather information from.-d domain- It is for the domain (this can be anything as this is required for the command to run)| tee dnsrecon-result.txt- This is used to pipe the output to the program tee which will save the output to a file.
Last updated

