Footprinting using DNS info
- Parag Shimpi
- Aug 30, 2019
- 1 min read
DNS stands for Domain Name System. It is a server that keeps the mapping between IP addresses and respective Domain Names. As IP addresses are the numbers and our brain is better in rembering the "words" than the "numbers', the DNS server provides this mapping facility to us. There are various tools like nslookup, host, etc. by using which we can gather the DNS information about the target in indirect manner.
1. Nslookup:
It returns the IP address of the site from DNS servers.
In Kali Linux Terminal
~# nslookup {site name}
Nslookup can also be used to find various services on the domain name. E.g. using nslookup for findling mail servers on perticular domain.
In Kali Linux Terminal
~# nslookup
> set type = mx
> {domain name}
Here,
mx --> mail server
2. Host:
Host provides the name servers for the perticlar domain.
In Kali Linux Terminal
~# host -t ns {domain name}
Here,
-t --> query type
ns --> name server
Recent Posts
See AllDue to explosive growth of internet, we are living in the age where everything is connected to each other. Many systems like E-commerce...
Hacking is a prominent aspect in cyber space. It has two sides, good as well as bad. The system can be best protected by probing it,...