0
What information can I get only by having an IP address ?
For example: Computer name, domain name, dns servers (if it's a server) etc.
Thank you.
0
What information can I get only by having an IP address ?
For example: Computer name, domain name, dns servers (if it's a server) etc.
Thank you.
1
The only things you can do are:
tracert / traceroute to the IP address e.g. traceroute 8.8.8.8
This will tell you the path traffic tends to take from your host to the remote host. You can find out upstream providers by using this method.
whois the ipaddress e.g. whois 8.8.8.8
This will who owns the netblock of the address, and their contact details.
reverse dns lookup. There are some sites on the internet which provide this service.
1
Using nmap (http://nmap.org/) you can find a whole lot more about any given host. There are many options avaiable, but the most popular would be:
Scan for remote OS:
nmap -v -A 8.8.8.8
Not working? Guess the remote OS:
nmap -v -O --osscan-guess 8.8.8.8
Scan firewalled host:
nmap -PN 8.8.8.8
Scan for typical services, i. e. those below port 1025:
nmap -sV 8.8.8.8
And of course, scan any old port(use "*"
for all ports):
nmap -p 12345 8.8.8.8
port scanning can be considered electronic trespass. Do you have permission from Google to scan their name server? – David – 2014-05-04T16:59:43.290
I appreciate your concern, for there may be countries where port scanning is illegal. However, in my part of the world (Germany) it is not and, frankly, forbidding port scanning would only be another betrayal of the low level of understanding the legislative usually has in these matters. – bjanssen – 2014-05-06T05:43:39.240