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
1
vote
2 answers

How do I get a company name from an IP address?

I've searched around a while and all of the IP --> Hostname things actually only end up giving an ISP. Is there something that goes beyond that? I'm only finding pay services that go further and not something that I can just tap a nice API and…
1
vote
1 answer

Setting up an Whois -script on a delay

So I have this problem, where I have a database-client, and the way it is right now, is that when the page loads, it generates sections for every row in a database table containing a domain name, and the corresponding IP-address for it with PHP. On…
matsutus
  • 74
  • 9
1
vote
1 answer

How to add Alpine Linux repositories when their domain is expired?

Today, I was trying to build a Docker container using Alpine Linux 3.2. However, the apk command was not successful during building the container image because it could not retrieve the APKINDEX file. I tried to add other dl- links to the…
imriss
  • 1,815
  • 4
  • 31
  • 46
1
vote
1 answer

Skip if it doesn't respond in a certain amount of time

I've created a program that pulls websites off of google and then strips them down to their basic url: example http://google.com/search/owie/weikw => http://google.com. It then saves these to a file. After that it runs a .each_line on the file then…
13aal
  • 1,634
  • 1
  • 21
  • 47
1
vote
2 answers

Objective C: Terminal output into NSString

I'm trying to execute "whois search domainname.tld". I'm currently using system("whois search domainname.tld"); however i need to get the output into a NSString variable to output to the user. How can i do this?
Daniel
  • 3,017
  • 12
  • 44
  • 61
1
vote
1 answer

bash capture ips and whois range from a list of domains

I have a list of thousands of domains. For example: .google.com .gmail.com .google.co .yahoo.com etc, etc, etc. I need to resolve the IP addresses of these domains, and then, get the range whois. Example manual: host -t a gmail.com =…
user4839775
1
vote
1 answer

Validating Domains Using WHOIS in Bulk

I have created an application in C# that finds Dummy Domains that ends withj .DE and then another part of the application checks them whether they really exists, the dummy are about (40 ^ 63) in number. I can successfully check them against WHOIS…
Umair A.
  • 6,690
  • 20
  • 83
  • 130
1
vote
3 answers

System for tracking changes in whois records

What's the best storage mechanism (from the view of the database to be used and system for storing all the records) for a system built to track whois record changes? The program will be run once a day and a track should be kept of what the previous…
DrMHC
  • 795
  • 2
  • 11
  • 21
1
vote
1 answer

Get AS ID from IP Address

I'm trying to get the AS ID for each IP address I get back from a traceroute output. What's the best way to do this? The only command I know right now is 'whois ip_addr' but that returns too much information, and is very difficult to parse (since…
yolo_coder
  • 11
  • 2
1
vote
2 answers

How to test for undef when running whois in Perl?

In the following code example, I am trying to get a whois statement. Every now and then it throws a timeout exception. From PerlDoc it says that in cases the $Net::Whois::Raw::CHECK_FAIL = 1; is set to 1 then it should return undef. I encapsulated…
KingsInnerSoul
  • 1,373
  • 4
  • 20
  • 49
1
vote
1 answer

VBA Function to connect to WHOIS server and return availability of a .com.au domain

I'm creating a template for a client who wishes to quickly check the availability of dozens of domains at a time. The template must remain as an excel file. I've installed and used the SEOToolsForExcel which permitted me to query a server and check…
caracter2
  • 43
  • 7
1
vote
1 answer

Check Subdomain using whois

I'm trying to add subdomain to the list of my whois file. So my website visitors can check availability of the subdomains they want. Is there anyway to do that?
1
vote
2 answers

How to avoid program freezing when connecting to server

I have a little script which filters those domain names which are not registred yet. I use pywhois module. The problem is that it suddenly freeze and do nothing after several (sometimes hundreds) of requests. I think it is not a ban because I can…
Milano
  • 18,048
  • 37
  • 153
  • 353
1
vote
2 answers

Use whois to get country from IP address in Perl

how can I get country from IP address in Perl? I have to use whois to do it. I know, that to take country I can use: $test = `whois $ip |grep -i country`; But it returns me "Country: DE". I need just "DE".
Mateusz
  • 323
  • 2
  • 11
  • 23
1
vote
0 answers

No whois server is known for this kind of object

I get the error message when calling from PHP: $content= exec("whois sanei-office.com"); I get the message: No whois server is known for this kind of object But when calling from terminal (same linux server), the request works.
Ploetzeneder
  • 1,281
  • 4
  • 20
  • 34