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

Piping IP address from dig to whois

I want to get the IP address of a domain name with dig and then perform a whois lookup on that IP address. I tried this: dig domain.dk +short | whois
emilstahl
  • 13
  • 1
  • 3
0
votes
0 answers

PHP whois via proxy

I have this PHP script to fetch whois information of domain. It works, but when I try to connect whois server via proxy, then it doesnt work. What I do wrong? Thank you for help. $server = "whois.nic.cz"; $domain = "ucedan.cz"; function…
0
votes
0 answers

using bulk creation and expire date whois class

using bulk whois class I want to make use of bulk of domain creation, Expire and Registrar where is my mistake here? I am new php programmer
0
votes
1 answer

Do you know of a place or an API that lists all domains registered that day?

I am needing to be able to look at the new domains being purchased each day. Preferably free.
0
votes
1 answer

Should I Be Using Async Calls?

I have a c# application which reads a table of roughly 1500 site url's of clients who have been with the company since we started. Basically, I am running whois queries on these url's and seeing if they are still a client or not. The application…
0
votes
1 answer

Dns NameServer Query C#

I am trying to query a web address and get current non cached results like the root name server and the administrative contact email. Could ye please point me to a guide with sample code on how this can be achieved. Thanks Tommy
Tommy Cawley
  • 185
  • 2
  • 3
  • 12
0
votes
1 answer

fsockopen is timing out

i am following a script so i can check domain names in bulk. I have tryed this with just using about 10 domain ideas and it works. But now im trying to run this with thousands of domain ideas but it just loads for a while then goes to 404 here is my…
user3613245
  • 79
  • 2
  • 11
0
votes
1 answer

Whois lookup via a proxy server: java.lang.IllegalArgumentException: Invalid Proxy

I have tried this...gives me a java.lang.IllegalArgumentException: Invalid Proxy. The getters populate the proxy and port from a text file. //Imports import java.io.BufferedReader; import java.io.File; import java.io.FileReader; …
Mallik Kumar
  • 540
  • 1
  • 5
  • 28
0
votes
0 answers

How to hide my WHOIS Information with Plesk on a Linux server?

i want to hide my WHOIS Information and my linux server is running PLESK. Does somebody know anything for getting this done?
fr3ddyf
  • 73
  • 8
0
votes
1 answer

PHP - How to get a domain age from whois output?

i am trying to calculate a domain age using whois output but mostly whois creation date showing wrong information. For example: i am retrieve whois data for " alexa.com " from " whois.verisign-grs.com " or " whois.markmonitor.com " the creation date…
user2430116
  • 147
  • 2
  • 2
  • 8
0
votes
1 answer

can people view amount of whois requests?

I went on who.is to find a domain name to buy. It was currently in use, so I waited till it expired, but as soon as it had a domain name parker went and sat on it. Is it possible for people to see how many whois requests have been made to this site.…
0
votes
1 answer

PHP file_get_contents foreach

I've found an existing script on the internet that grabs data from WHOIS servers and extracts the relevent data (Eg. Expiry date, Status). As it was long abandoned I have been modifying it and created my own script.php?id=domain.com which lets me…
user3543992
  • 3
  • 1
  • 3
0
votes
2 answers

TCP port 43 Whois servers

Hi network programmers I would like to know if there is 1) any up-to-date single whois server for PHP socket port 43 lookup of single domain names of (almost) any TLD ? 2) any list or information of up-to-date of whois servers for PHP socket port 43…
user3161299
  • 1
  • 1
  • 2
0
votes
0 answers

php + shell: how to look up an IP's parent domain ("superdomain")

Given an arbitrary IP address (registrar not known at this point), what's the easiest or most efficient way to look up the end-user CIDR to which it "belongs", and basic information about that IP block (such as registered name of owner). I'm…
Stilez
  • 558
  • 5
  • 14
0
votes
1 answer

whois query against a list of urls

I am using PEAR's Net::Whois to look up WHOIS records. The following code is intended for a single domain query. I want to query more than one domain names by rewriting the code below. I have a URL list saved in .txt file (plain text). My question…