How can I determine which company an IP address belongs to?

13,288

You can install the whois command line tool for windows from microsoft

edit: then what information are you looking for ?

>whois bbc.co.uk
Domain name:
    bbc.co.uk

Registrant:
    British Broadcasting Corporation

Registrant type:
    UK Limited Company, (Company number: 000057)

Registrant's address:
    Research & Development
    Kingswood Warren
    Tadworth
    Surrey
    KT20 6NP
    United Kingdom

Registrar:
    British Broadcasting Corporation [Tag = BBC]
Share:
13,288
Brann
Author by

Brann

Updated on August 11, 2022

Comments

  • Brann
    Brann over 1 year

    I'm trying to programmaticaly determine the company* associated with a given IP address.

    My first guess was this :

      string hostname = Dns.GetHostEntry(IPAddress.Parse(ip)).HostName;
    

    but this won't work if the reverse DNS isn't set correctly, which seems to happen 90% of the time.

    However some websites are still able to successfully determine the company associated with a specific IP even if the reverse dns fails. For example, on this site, the ISP Provider field sometimes contains valuable information (ie the name of the company) even if the hostname isn't set.

    What's the easiest way to achieve the same thing using .net ?


    Notes :

    • I don't need a canonical name. ie MS or Microsoft are both ok.
    • I'm targeting big companies, which are likely to "own" their IP address ranges.
    • I'm running on Windows, so unix's whois tools are not installed by default.

    Edit regarding the use of whois : Sometimes, there's no whois information associated with an IP

  • Brann
    Brann almost 15 years
    Unfortunately, it doesn't provide the information I'm looking for.
  • Brann
    Brann almost 15 years
    Unfortunately, it doesn't provide the information I'm looking for
  • Joe
    Joe almost 15 years
    That's how this kind of info is likely being determined, however, by figuring out who owns the blocks of IPs (which comes from the ARIN database). There may be successive whois queries.