Tools for identifying Domains by IP address

Hello, I have a text log with thousands of public IP addresses and I want a quick way to identify the domains where they belong. I am profiling traffic on an old proxy server whcih only stores raw Ip addresses. I am sure there is a tool out there which can generate the domain names without me keying in 1 ip after the other in a whois site. Kindly point me to the right direction

Good 'ol shell doesn't work for you? for each in `cat /tmp/ips.txt` do whois $each >> /tmp/whois.txt done then grep/awk/sed the whois.txt file for what you need. ./Ok3ch On Wed, Jul 13, 2011 at 10:00 AM, Thomas Kibui <thomas.kibui@gmail.com> wrote:
Hello, I have a text log with thousands of public IP addresses and I want a quick way to identify the domains where they belong. I am profiling traffic on an old proxy server whcih only stores raw Ip addresses. I am sure there is a tool out there which can generate the domain names without me keying in 1 ip after the other in a whois site.
Kindly point me to the right direction
_______________________________________________ Skunkworks mailing list Skunkworks@lists.my.co.ke http://lists.my.co.ke/cgi-bin/mailman/listinfo/skunkworks ------------ Skunkworks Rules http://my.co.ke/phpbb/viewtopic.php?f=24&t=94 ------------ Other services @ http://my.co.ke

#!/bin/bash List=ipaddr.txt cat $List | while read ip do whois -h whois.cymru.com " -v $ip" >> /tmp/results.txt done On Wed, Jul 13, 2011 at 10:09 AM, Okechukwu <okechukwu@gmail.com> wrote:
Good 'ol shell doesn't work for you?
for each in `cat /tmp/ips.txt` do whois $each >> /tmp/whois.txt done
then grep/awk/sed the whois.txt file for what you need.
./Ok3ch
On Wed, Jul 13, 2011 at 10:00 AM, Thomas Kibui <thomas.kibui@gmail.com> wrote:
Hello, I have a text log with thousands of public IP addresses and I want a quick way to identify the domains where they belong. I am profiling traffic on an old proxy server whcih only stores raw Ip addresses. I am sure there is a tool out there which can generate the domain names without me keying in 1 ip after the other in a whois site.
Kindly point me to the right direction
_______________________________________________ Skunkworks mailing list Skunkworks@lists.my.co.ke http://lists.my.co.ke/cgi-bin/mailman/listinfo/skunkworks ------------ Skunkworks Rules http://my.co.ke/phpbb/viewtopic.php?f=24&t=94 ------------ Other services @ http://my.co.ke
_______________________________________________ Skunkworks mailing list Skunkworks@lists.my.co.ke http://lists.my.co.ke/cgi-bin/mailman/listinfo/skunkworks ------------ Skunkworks Rules http://my.co.ke/phpbb/viewtopic.php?f=24&t=94 ------------ Other services @ http://my.co.ke

Where's the 'Like' button on these responses? On 13 July 2011 10:13, Frank Ochere <ochere@gmail.com> wrote:
#!/bin/bash
List=ipaddr.txt cat $List | while read ip do whois -h whois.cymru.com " -v $ip" >> /tmp/results.txt done
On Wed, Jul 13, 2011 at 10:09 AM, Okechukwu <okechukwu@gmail.com> wrote:
Good 'ol shell doesn't work for you?
for each in `cat /tmp/ips.txt` do whois $each >> /tmp/whois.txt done
then grep/awk/sed the whois.txt file for what you need.
./Ok3ch
On Wed, Jul 13, 2011 at 10:00 AM, Thomas Kibui <thomas.kibui@gmail.com> wrote:
Hello, I have a text log with thousands of public IP addresses and I want a quick way to identify the domains where they belong. I am profiling traffic on an old proxy server whcih only stores raw Ip addresses. I am sure there is a tool out there which can generate the domain names without me keying in 1 ip after the other in a whois site.
Kindly point me to the right direction
_______________________________________________ Skunkworks mailing list Skunkworks@lists.my.co.ke http://lists.my.co.ke/cgi-bin/mailman/listinfo/skunkworks ------------ Skunkworks Rules http://my.co.ke/phpbb/viewtopic.php?f=24&t=94 ------------ Other services @ http://my.co.ke
_______________________________________________ Skunkworks mailing list Skunkworks@lists.my.co.ke http://lists.my.co.ke/cgi-bin/mailman/listinfo/skunkworks ------------ Skunkworks Rules http://my.co.ke/phpbb/viewtopic.php?f=24&t=94 ------------ Other services @ http://my.co.ke
_______________________________________________ Skunkworks mailing list Skunkworks@lists.my.co.ke http://lists.my.co.ke/cgi-bin/mailman/listinfo/skunkworks ------------ Skunkworks Rules http://my.co.ke/phpbb/viewtopic.php?f=24&t=94 ------------ Other services @ http://my.co.ke
participants (4)
-
Frank Ochere
-
Okechukwu
-
Simon Mbuthia
-
Thomas Kibui