Questions tagged [whois]

The WHOIS protocol allows a user to query the registrant of a particular domain name or IP address.

The WHOIS service is a TCP based protocol that allows you to look up the registrant of a domain name.

The WHOIS service sits on TCP port 43 and can often be found at whois.nic.tld (where 'tld' is replaced with the appropriate top-level domain such as .it or .xyz).

One way to use it is to simply telnet to it and send the domain name followed with at CRLF. For example:

telnet whois.nic.coop 43 midcounties.coop

You will then get a list of all the details about the domain.

415 questions
73
votes
6 answers

Reverse ip, find domain names on ip address

How and from where websites like this http://www.yougetsignal.com/tools/web-sites-on-web-server/ are getting this information from? How can I develop such tool? Thank you.
Kirzilla
  • 16,368
  • 26
  • 84
  • 129
24
votes
2 answers

How to get WhoIs info by IP in Python 3?

Note: This is not a library recommendation question. It is rather about possible approaches to the problem. Question: What approaches are possible to retreive WhoIs information from given IP address in Python 3? The result should contain at…
Babken Vardanyan
  • 14,090
  • 13
  • 68
  • 87
19
votes
1 answer

What is the best way to create a whois lookup?

I want add a domain registration in a website written with PHP. So I need a whois lookup service. What do I need to do? What's are its steps? Do I need a database, API or ... ? Help me please
Mohammad Saberi
  • 12,864
  • 27
  • 75
  • 127
18
votes
3 answers

whois lookup limits - how to work around daily quota/query limits

I'm building a website that allows users to check the availability of international domain names. My approach was to do a simple whois lookup on each request, but I'm now realizing that there are pretty harsh daily or hourly limits, e.g. "Allowed…
Hoff
  • 38,776
  • 17
  • 74
  • 99
17
votes
8 answers

Get country location of an IP with native PHP

Read on before you say this is a duplicate, it's not. (as far as I could see) I want to get the county code in php from the client. Yes I know you can do this using external sites or with the likes of "geoip_record_by_name" but I don't want to be…
Mint
  • 14,388
  • 30
  • 76
  • 108
15
votes
5 answers

Whois with JavaScript

I want to be able to get whois data (and idn domains too) by client-side javascript. Is it possible? Maybe some free REST-like WhoIs service exists?
Dmitry Belaventsev
  • 6,347
  • 12
  • 52
  • 75
14
votes
2 answers

Can I lookup NS and A at the same time using dig

Is it possible to lookup the A (ip address) and NS (nameservers) of a domain using a single dig command? I can use dig google.com A +short or dig google.com NS +short but surely it's possible to do it with just one command? If not, is there a…
Stevie
  • 245
  • 4
  • 9
13
votes
1 answer

How to reliably check if a domain has been registered or is available?

Objective I need a reliable way to check in Python if a domain of any TLD has been registered or is available. The bold phrases are the key points that I'm struggling with. What I tried? WHOIS is the obvious way to do the check and an existing…
tmt
  • 7,611
  • 4
  • 32
  • 46
13
votes
6 answers

Most efficient way to programmatically determine if a web domain is available?

I am writing some code to determine whether a network domain is registered. For example, I want to check if "Google123.com" is available. There are at least two ways I can do this programmatically, but I'm not sure which is more valid: A) In…
jm.
  • 23,422
  • 22
  • 79
  • 93
12
votes
8 answers

Checking domain name availability with DNS records

How accurately can a domain name's availibility be determined by checking for the existence of NS or SOA (Start of Authority) records? If not, how can I determine this as accurately as possible without resorting to WHOIS? For example, is it worth…
Petrus Theron
  • 27,855
  • 36
  • 153
  • 287
11
votes
4 answers

Hiding personal info from WhoIs

Is there a way to hide it? WhoIs Info for stackoverflow.com Registrant: Jeff Atwood 410 Clayton Ave El Cerrito, California 94530, United States Registered through: GoDaddy.com, Inc. (http://www.godaddy.com) Domain Name: STACKOVERFLOW.COM Created on:…
Sajal Dutta
  • 18,272
  • 11
  • 52
  • 74
11
votes
2 answers

Retrieving data from python's coroutine object

I am trying to learn async, and now I am trying to get whois information for a batch of domains. I found this lib aiowhois, but there are only a few strokes of information, not enough for such newbie as I am. This code works without errors, but I…
HoneyBee
  • 111
  • 1
  • 1
  • 4
11
votes
4 answers

Determining company name from IP address

I apologize for the broad question. But I have a list of IP addresses, and would like to connect them to the companies they came from. I'm not interested in identifying personal IP address information (probably not even possible) but I figure there…
user2948687
  • 111
  • 1
  • 1
  • 3
10
votes
8 answers

How do I run a WHOIS lookup with PHP or Python?

So anyways, I'm working on a small PHP website/script, and as one of the features I'd like to be able to run a WHOIS lookup on the current domain the PHP script is running on. Ideally, it would be one function that I could call and in the function…
Alper
  • 1
  • 12
  • 39
  • 78
10
votes
9 answers

What Python way would you suggest to check whois database records?

I'm trying to get a webservice up and running that actually requires to check whois databases. What I'm doing right now is ugly and I'd like to avoid it as much as I can: I call gwhois command and parse its output. Ugly. I did some search to try to…
kender
  • 85,663
  • 26
  • 103
  • 145
1
2 3
27 28