Tagged Questions

WHOIS - Service that shows registrant of a domain name

learn more… | top users | synonyms

37
votes
7answers
14k views

Who provides a WHOIS API?

Anyone can do WHOIS lookups through the whois command line tool or web based interfaces direct from the registrar but there are query limits which make commercial use difficult e.g. bulk checking of ...
19
votes
4answers
13k views

Possible to download entire whois database / list of registered domains?

I wanted to do some analysis on registered domain names. Looks like I can hit whois.internic.net to get information about each domain, but it also looks like there are rate limits that prevent me from ...
9
votes
5answers
4k views

Get country location of an IP with native PHP

Read on before you say this is a duplicate, it's not. (as far as I could see) I want to get the county code in php from the client. Yes I know you can do this using external sites or with the likes ...
9
votes
2answers
748 views

Parse whois answer

I want to create whois class like that public class DomainInfo { public string NameServer {get;set;} public string CreationDate {get;set;} public string UpdatedDate {get;set;} ...
6
votes
1answer
2k views

Free / Open Source WHOIS API

Looking for a Free / OpenSource WHOIS API that returns results in XML or some usable format?
5
votes
3answers
1k views

Check domain availability Java

Is there a relatively simple way in Java to check if a domain is available or not? I need a reliable method, so only checking if the connection can be made is not enough.
5
votes
1answer
2k views

Whois API and Whois Parser

I'm looking for a program/service that does Whois lookup and parses the whois data into detailed finer details, eg. registrant-> registrant_name, street address, city, state/province, country, email, ...
5
votes
4answers
304 views

Hiding personal info from WhoIs [closed]

Is there a way to hide it legally? I really need an answer on this. So, Please enlighten me. WhoIs Info for stackoverflow.com Registrant: Jeff Atwood 410 Clayton Ave El Cerrito, California 94530, ...
5
votes
2answers
958 views

Is there a public API to get domain WhoIs information?

Is there a public API that can be used to get domain who is information
5
votes
8answers
1k views

Most efficient way to programatically determine if a web domain is available?

I am writing some code to determine whether a network domain is registered. For example, I want to check if "Google123.com" is available. There are at least two ways I can do this programatically, but ...
4
votes
6answers
843 views

Checking domain name availability with DNS records

How accurately can a domain name's availibility be determined by checking for the existence of NS or SOA (Start of Authority) records? If not, how can I determine this as accurately as possible ...
4
votes
8answers
3k views

What Python way would you suggest to check whois database records?

I'm trying to get a webservice up and running that actually requires to check whois databases. What I'm doing right now is ugly and I'd like to avoid it as much as I can: I call gwhois command and ...
3
votes
4answers
55 views

Looking for an open source Java whois parser

I am trying to parse whois lookups in a java based whois server and looking to use a preexisting solution. Please note: I am not looking to parse whois data or query any server. I have looked into ...
3
votes
2answers
232 views

Reverse Whois service

Is there a Reverse Whois service I can use to find all domain names registered by a person? For example, I want to find all domain names registered by John Doe.
3
votes
2answers
351 views

Using Node.js, how can I check whether a domain name is registered?

I'm building a simple webapp to teach myself node.js, and in it I need to check whether a certain domain name specified by the user is registered. I'm not really sure how to go about this and I'd ...
3
votes
2answers
461 views

Coding a domain lookup tool

I have been coding a domain checker and really stuck with the php. This is what i have so far: <?php set_time_limit(0); ob_start(); $domain = $_GET['domain']; ########### Extensions to be checked ...
3
votes
4answers
998 views

Extract domain name from URL in C#

This question has answer in other languages/platforms but I couldn't find a robust solution in C#. Here I'm looking for the part of URL which we use in WHOIS so I'm not interested in sub-domains, ...
3
votes
1answer
199 views

How to implement your own WHOIS server?

How would you get the WHOIS information to provide in the first place? Note that I'm not actually intending to do this; I'm just interested in how it would work!
3
votes
4answers
316 views

Is it expensive to do a WHOIS lookup using TcpClient.Connect() in C#?

A customer has asked that we do a dynamic whois lookup on the homepage of their ASP.NET site, based on the IP of the user accessing the site. The implementation would be something like what's ...
3
votes
6answers
228 views

Tools for finding domain names

I've built out a pet project of mine, and am now looking for a good domain name for it. Arbitrarily doing whois lookups on ideas that pop into my head seems inefficient. What tools do you use when ...
3
votes
4answers
1k views

Is there a way to emulate the 'whois' tool using php?

I don't have whois installed on my server (apparently it's in the works but no real news on it). I was wondering if anybody knew a way to emulate the functionality of it though. I figured I'd be ...
3
votes
5answers
3k views

How do you check if a domain name exists?

Not only easy ones like .com or .net, but also, .co.uk, .fr, .gov.rw ... ? Should I really make a huge mapping "tld to relevant whois server", or is there an easier way ?
2
votes
1answer
34 views

Python Popen WHOIS OS command fail test

Prefacing this with the text 'just another beginner'. when you have the result of a whois command via the Popen command, how do you test if its good ? Normally when Python returns a list of whatever ...
2
votes
1answer
128 views

In Python, how do I check if a domain name is taken? [closed]

I want to whois "abc.us" or "abc.ly" and see if it's taken. How do I hit it and see if it's taken, using python?
2
votes
3answers
92 views

Extract college name from email domain in registration form

Let's say I have a registration form with email validation for college edu email addresses only set up. What would be the best way to get the college name using PHP from that to insert into the ...
2
votes
2answers
165 views

How can I implement a simple WHOIS proxy in Perl?

I have several WHOIS servers for which I want to have a single proxy. The proxy should forward requests to appropriate servers based on the data in the query. How to approach this problem?
2
votes
2answers
300 views

Get domain name expiration date via PHP

Here is my current code: function get_cmd () { if (file_exists('/usr/local/bin/whois')) $cmd = '/usr/local/bin/whois'; elseif (file_exists('/usr/bin/whois')) $cmd = ...
2
votes
2answers
37 views

Unexpected Output_networking

Here is what I get: And here is my complete code: import java.net.*; import java.io.*; class whois { public static void main(String args[])throws Exception { int c; Socket s=new ...
2
votes
3answers
126 views

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 ...
2
votes
5answers
3k views

How can I determine which company an IP address belongs to?

I'm trying to programmaticaly determine the company* associated with a given IP address. My first guess was this : string hostname = Dns.GetHostEntry(IPAddress.Parse(ip)).HostName; but this ...
2
votes
2answers
290 views

How to create a list of recently expired domains?

I see many websites offering services to list recently expired domains. I also see many blogs on how to use these websites. However, none of them explain what is necessary to generate the list in a ...
2
votes
6answers
9k views

Can I improve this regex check for valid domain names?

So, I have been working on this domain name regular expression. So far, it seems to pick up domain names with SLDs and TLDs (with the optional ccTLD), but there is duplication of the TLD listing. Can ...
2
votes
6answers
2k views

How to get whois information of a domain name in my program?

I want to get whois information of a domain name from my c#/java programs. Is there a simple way to do this?
1
vote
2answers
57 views

Create whois lookup

I want add a domain registration in a website written with PHP. So I need a whois lookup service. What do I need to do? What's are its steps? Do I need a database, API or ... ? Help me please
1
vote
2answers
93 views

How to check if a variable contains a valid url using PHP and jQuery?

I'm trying to make a whois check script. User can submit some domain address and then get a message if it's available or not. $_POST['url'] is the submitted value by user. How do I know if this ...
1
vote
2answers
54 views

Domain name availability check [closed]

I would like to know, where can I get domain availability status. I mean, where is availability status stored and who maintains it. I read some articles about this topic and discovered that whois ...
1
vote
1answer
83 views

How to use whois in google app engine

I know there is pywhois but it can't used in gae, see this question. But i really need this function to verify whether a domain is registered, is there other way to implement whois by pure python? ...
1
vote
1answer
615 views

whois database download providers

where can I download the entire whois database? I'm working on a research project that requires analyzing website informations for all the domain names out there
1
vote
1answer
63 views

Strange net paths in WHOIS

As a self-learning project, I'm implementing a C++ whois client. I'm using a couple of ancient C implementations for reference, e.g. koders.com. One thing puzzles me. As well as the expected path ...
1
vote
1answer
497 views

Check multiple whois requests in a textarea

I would like to create a whois function that can check availability for multiple domains (many different words at the same time). I have this script which works for one single word. How can I get it ...
1
vote
1answer
225 views

How can I find out a whois server for a particular domain?

I'm trying to make a desktop application checking whois records among other things and I've found a few lists mapping top-level domains to whois servers. They work usually, but sometimes information ...
1
vote
2answers
134 views

Domain name existence via “dig”

Would it be possible to check a domain name its existence by checking the output of "dig"? Inside the bind sources I found these constants: 0 DNS_R_NOEROR 1 DNS_R_FORMERR 2 DNS_R_SERVFAIL 3 ...
1
vote
3answers
142 views

How to detect the “owner” of a website?

after some web research I hereby ask for some disambiguation of webhosting terms: With a whois (as a command in a terminal or a web interface) one can detect the registrar of a specific domain. This ...
1
vote
1answer
426 views

Getting a full copy of the WHOIS database

I'm interested in getting access to a full WHOIS database in order to expand on a domain-profile project I'm working on. I know ARIN provides this database only to non-commercial researchers and every ...
1
vote
3answers
286 views

SEO: A whois server that work for .SE domains?

I'm developing a small domain checker and I can't get .SE to work: public string Lookup(string domain, RecordType recordType, SeoToolsSettings.Tld tld) { TcpClient tcp = new ...
1
vote
1answer
588 views

Suspicious results Internic WHOIS Query

I was testing the access to the Internic WHOIS with the following code: $domains = array('google.com'); $internic = fsockopen('whois.internic.net', 43); if (is_resource($internic) === true) { ...
1
vote
2answers
1k views

Whois server not returning results?

Hi I have been messing with this Whois script I got of the 'net, and have been messing with variables and arrays for ever trying to figure out why it won't return the whois results for Google and ...
1
vote
2answers
255 views

How to resolve an IP address to an organization (with caching)

I would like to resolve IP(v4) addresses to owner organizations, from the registry of IP address allocations. To do it, I don't want to become an expert in whois protocols and templates or the ...
1
vote
3answers
245 views

Reverse ip, find domain names on ip address

How and from where websites like this http://www.yougetsignal.com/tools/web-sites-on-web-server/ are getting this information from? How can I develop such tool? Thank you.
1
vote
2answers
292 views

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 ...

1 2 3