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
0
votes
1 answer

Which whois servers are "thick" whois servers?

I am looking for whois server that will provide domain names for all domains and not just those "local" I found some {"whois.domainsrs.com", "whois.easyspace.com", "whois.indiatimes.com", } Where can I get the rest? I do not like the official…
user4951
  • 32,206
  • 53
  • 172
  • 282
0
votes
1 answer

Domain - The DNS has been propagated or not?

Made the purchase of a domain in a Brazilian company called UOL (Universo Online). Once the domain has been registered, it came with the following standard DNS: Nameserver: ns1.dominios.uol.com.br Nameserver: ns2.dominios.uol.com.br Nameserver:…
user2297392
0
votes
1 answer

fsockopen whois works on localhost but not working on live site

i am using this code to connect to the whois vpb_domain_whois is a array the code works fine in my localhost, but when uploaded to my host shows error could not connect to the server : if($vpb_socket = fsockopen($vpb_domain_whois[0], 43))
ankush madaan
  • 300
  • 1
  • 16
0
votes
1 answer

Domain Lookup Script execution time

I need to lookup domains names from an XML file and then loop through each domain to see whether it exists or not.. Im using below approaches.. 1.fsockopen() 2.checkdnsrr() Number of records in XML file is around 120.Im using AJAX to get the…
Dev
  • 102
  • 1
  • 8
0
votes
1 answer

Google IP address range for whitelist

We are creating a captive-portal setup where we will like to allow unauthenticated access to all google services. To achieve this we will have to get the list of IP addresses google uses and then whitelist them. I understand I will have to run a…
Get Splashed
  • 25
  • 2
  • 6
0
votes
1 answer

How to get ns records that are registered to ip adress

I have ip ranges. I would like to find ns addresses that are pointing to corresponding ip adress I'm looking for a command to do over nslookup or dig Expected…
Deniz Porsuk
  • 492
  • 1
  • 6
  • 20
0
votes
1 answer

Reliable PHP who-is method?

I have been using this (http://sourceforge.net/projects/phpwhois/) and it seems to be effective, but I plan to use it on a website that will allow users to enter a domain name and receive the who-is information. Unfortunately, the thing that I…
0
votes
1 answer

Do a whois by reading a the domains from a text file

I am trying to do a WHOIS for around 50 domains, i have searched on here and found a script that looks like it works but when i run it, it says: "The Maximum setlocal recursion has been reached" "The Process can not access the file, it is being…
Peaches
  • 5
  • 1
  • 4
0
votes
2 answers

PHP: To display who owns a domain?

As a service, we would like to have on our website the ability for visitors to put in a domain name to see who owns it. I know there are other services on the web to do this for whois, but we would like to offer this on our own website. How can this…
Edward
  • 9,430
  • 19
  • 48
  • 71
0
votes
3 answers

perl - Net::Whois::Raw not stripping whois disclaimers

I'm trying to write a Perl script that displays whois information for various servers. The whois servers, however return all types of disclaimers and other text within the replies. Net::Whois::Raw does have options to strip these disclaimers, but I…
user2064000
0
votes
2 answers

Warning: Illegal string offset 'handler' in C:\wamp\www\whois\whois\whois.gtld.php on line 57

I'm using phpwhois php class to find whois details of web domains (http://sourceforge.net/projects/phpwhois/) and i'm using this script on my localhost. When i run this script using below code it shows an error. Please tell me where i am going…
Daman
  • 933
  • 1
  • 7
  • 5
0
votes
1 answer

packet sniffer - trace back to where content originated

I used sniffex.c as my starting point, and I've spent a few months working on getting the packet sniffer working the way I would like. It is a good tool for providing a summary of traffic flow in and out of each computer on my network, but I find…
nomadicME
  • 1,389
  • 5
  • 15
  • 35
0
votes
1 answer

Completed 500 Internal Server Error in 4ms NameError (uninitialized constant Site::Whois)

I'm using whois gem and i work great in development. When i upload it in production i have such error: Completed 500 Internal Server Error in 4ms NameError (uninitialized constant Site::Whois): app/models/site.rb:11:in…
user1625602
  • 63
  • 1
  • 6
0
votes
1 answer

Whois apnic issue

Using the following code for whois lookups : public static string LookUp(string ip, string whoisServer){ string buff = string.Empty; string strDomain = ip + "\r\n"; byte[] arrDomain = Encoding.ASCII.GetBytes(strDomain); using…
esjr
  • 186
  • 3
  • 9
0
votes
2 answers

execute a whois unix command using system()

Is there a way / is it possible to execute the unix whois query using php, possibly using system().? I am trying echo '
';
$last_line = system('whois ryansmurphy.com', $retval);
echo '

Last line of the output: ' . $last_line . '
RSM
  • 14,540
  • 34
  • 97
  • 144