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
-2
votes
2 answers

Possible to search Whois database by registrant name?

I am looking to collect domains and registrants' contact details via whois lookups. Does anybody know of a resource that has free reverse look-ups using the registrant name as the search term?
-3
votes
1 answer

How can I list all the websites associated with one IP

I am looking for away on the linux command line to list all the websites associated with 1 IP. I know web hosting companies can have hundreds of websites on a single IP and I am looking at how I can query that list. I know some website can provide…
-3
votes
1 answer

Need help on homework about tracert in windows

This is the question Select three random companies, and issue the whois and traceroute (tracert in Windows) commands for each one. Tracert is available from a command prompt. To use whois, you will need to search for an online tool. Then write a…
-3
votes
1 answer

Python error module object is not callable

I have this code: import whois print whois.whois('google.com') Run in IDLE: But It run ok in console:
MathSky
  • 3
  • 1
-3
votes
2 answers

Storing return data of print Whois in Python

I have this Python script: import whois w = whois.whois('google.com') print w I want to store the results of print to send them via an email.
-3
votes
1 answer

How to use ""Whois Class Code"" script?

whoislookup("99webtools.com"); //Your domain or IP echo '
'.$rs.'
'; ?> and this is link to show whoisclass.php http://99webtools.com/php-whois-script.php
-4
votes
1 answer

How can I connect to a Tcp server using a web browser?

N.B. Those who are commenting this question is broad(also, down-voting and closing): you don't need to focus on the details. The only problem is to be able to use browser. Background of the problem: I have a requirement that: I have a client…
user366312
  • 16,949
  • 65
  • 235
  • 452
-4
votes
1 answer

making an XML call to WhoisAPI

i just got an account at: http://www.whoisxmlapi.com/index.php#/whois-api-doc.php?rid=1 ive never parsed XML with c#, how would i get the information in the tag ?
Alex Gordon
  • 57,446
  • 287
  • 670
  • 1,062
-5
votes
2 answers

Iterate over a list in python

I'm using the module pythonwhois to get a list of many entries on specific domains: def whois(self): host = str(self.EntryText.get().lstrip("http://www.")) whois = pythonwhois.net.get_whois_raw(host) print whois whois the above returns…
The One Electronic
  • 129
  • 1
  • 1
  • 9
-5
votes
1 answer

Data Scraping using php

Here is my code $ip=$_SERVER['REMOTE_ADDR']; $url=file_get_contents("http://whatismyipaddress.com/ip/$ip"); preg_match_all('/(.*?)<\/th>(.*?)<\/td>/s',$url,$output,PREG_SET_ORDER); $isp=$output[1][2]; …
Thomas Cox
  • 309
  • 4
  • 12
1 2 3
27
28