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

user authentication for whois.domaintools.com python script

i am trying to develop python script to get hosting company info from domaintools.com, below is my script. somthing wrong with this authentication part it returns 403 error. domain_tools_url = 'https://secure.domaintools.com/log-in/' username =…
AGR
  • 225
  • 1
  • 2
  • 16
0
votes
1 answer

Java check if domain exists without using outside WhoIs server

so I need to check a large amount of domains for availability in my program. I tried to use outside WhoIs servers, but they usually rate limit me. Does anyone know of a way to check if the domains are available on the host machine? I thought about…
user1947236
  • 673
  • 3
  • 12
  • 27
0
votes
2 answers

Obtaining domain contact records in php

Which DNS records is for Domain owner Contact information ? if there is no such record then how can i get the owner information in php ?
Ragni Munjal
  • 142
  • 8
0
votes
1 answer

PHP's phpwhois in Java?

phpwhois is a script for PHP that allows you to perform whois lookups on any domain: http://sourceforge.net/projects/phpwhois/ Does anyone know of a comparable Java package that can accomplish the same thing? Thanks!
Kirk Ouimet
  • 27,280
  • 43
  • 127
  • 177
0
votes
1 answer

Whoisxmlapi API is not running

This API http://www.whoisxmlapi.com/whoisserver/WhoisService?domainName=xxxxxx is returning an error message as xml format. IP Address 203.100.79.84 has 0/50 queries available, please refill Can any one…
0
votes
2 answers

TCP sockets with Zend Framework

I want to query a WHOIS server with PHP. This means that I have to TCP connect to Port 43 on the WHOIS server. Is there a way to do this with the ZEND Framework? I only found HTTP socket adapters. I will do it with the native PHP socket functions if…
Lennart Koopmann
  • 20,313
  • 4
  • 26
  • 33
0
votes
1 answer

How to find domains registered at a certain time?

Is there a place where you can reach the history of domain registrations? To be more specific: How can I find out what other domains have been registered within a certain period of time? I know there are paid services which allow you to find…
KxorSLLk
  • 21
  • 3
0
votes
2 answers

Top level domain ignorance at using RIPE

I'm developing a simple app in c#, that can check if a domain name is available to puchase for a specific tld. The method: I downloaded a whois-server list, I send the domain name to its whois server with a TCP client on the protocol 43, and check…
user1300630
0
votes
1 answer

Check domain availability via DNS in Ruby? Check DNS record?

This SO post suggests checking domain availability through a combination of DNS lookups and WHOIS queries. Unfortunately, it's not clear what the best way is to perform the DNS lookup in Ruby. The docs for the Dnsruby gem are sparse at best. What's…
Crashalot
  • 33,605
  • 61
  • 269
  • 439
0
votes
1 answer

Delphi idWHOIS with Web proxy

Good day, Please help with an example of how to use idWHOIS via a web proxy? I want to make whois calls anonymously using free web proxies. Why is it so simple with idHTTP component that have ProxyParams but with idWHOIS not? I am really clueless…
Marius
  • 11
  • 3
0
votes
2 answers

WHOIS Domain Availability Search

I came upon the following domain check function and I can't seem to get it to work. function domain_checker($domain){ $extension = explode(".",$domainname); $extension = $extension[1]; switch($extension) { case "com": $server =…
HWD
  • 1,547
  • 7
  • 36
  • 72
0
votes
2 answers

whois command is not recognized

I have downloaded nmap. As far as I know, it supports the 'whois' tool. When I try to type the following: whois yahoo.com (as example). I got the following error: 'whois' is not recognized as an internal or external command, operable program or…
Mem
  • 23
  • 4
  • 11
0
votes
2 answers

WHOIS query object

Ok....while learning web development every so often i get stuck, knowing that i'm missing a one little basic piece of information and just grinding to find out what. It happens because experienced programmers don't care about restating the basics.…
Badarse
  • 47
  • 2
  • 9
0
votes
3 answers

How do I Retrieve the visitor's ISP in PHP?

How do I find out the ISP provider of a person viewing a PHP page? Is it possible to use PHP to track or reveal it? If I use something like the following: gethostbyaddr($_SERVER['REMOTE_ADDR']); Fixed Now:it returns my IP address, not my host name…
Thomas Cox
  • 309
  • 4
  • 12
0
votes
1 answer

whois lookups on the IP addresses

$ host 64.34.119.12 12.119.34.64.in-addr.arpa domain name pointer stackoverflow.com. How is this Carried out in php? I am planning to do lookup for searching Google's ip. How do i do implement this? Like in above example it is…
Fred Glenn
  • 29
  • 1
  • 3