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
1
vote
2 answers

How to check domain name availability via linux command

I am using checkdnsrr() function in PHP to check for available or parked domains but the result is not 100% accurate. Is there any other method to check a domain name availabilty?
user188820
  • 23
  • 1
  • 3
1
vote
1 answer

Get WhoIs details for Domain-name

when i search for open source for domain checker, i got this reference http://www.codeproject.com/KB/aspnet/DataScraping.aspx actually it is in vb.net i convert into c# code and paste the code in my web page i sending total source and code source…
Surya sasidhar
  • 29,607
  • 57
  • 139
  • 219
1
vote
2 answers

whois script doesn't get some domains

I'm trying to get whois data using this function: function getDomain() $domain = 'stackoverflow.com'; $whois = ''; $connection = @fsockopen('whois.internic.net', 43); if ($connection) { @fputs($connection, $domain ."\r\n"); while…
cmltkt
  • 193
  • 3
  • 16
1
vote
0 answers

Using MaxMind or run a local whois to get visitor country code by IP

what is the best method to get visitors country code by IP between the 2 following methods: Using MaxMind geoip database here. Run a local whois and grep for the word country like this $ip = $_SERVER['REMOTE_ADDR']; // Get users IP $country =…
Wakanina
  • 592
  • 3
  • 6
  • 20
1
vote
1 answer

Whois Queries on a port besides 43

How would one use whois via a proxy server behind a corporate proxy using a port beside 43. Problem: I want to whois a domain / ip Why Can I not do this: 1) Firewall allows 21/tcp, 22/tcp, 23/tcp, 119/tcp, 389/tcp, 554/tcp, 636/tcp, 2401/tcp,…
Eiyrioü von Kauyf
  • 4,481
  • 7
  • 32
  • 41
1
vote
1 answer

Ruby async whois

I'm using whois to perform and parse whois queries. The problem is: i need to perform much more. Thousands and thousands. I found async package em-whois, which sounds perfect for me. This is simple addon for whois, which relies on Ruby Fibers and…
artyomboyko
  • 2,781
  • 5
  • 40
  • 54
1
vote
0 answers

pywhois on domains with multiple records

I'm trying to create a simple app that will allow me to run a whois, but I've hit a road block. >>> w = pywhois.whois('google.com') >>> print w creation_date: [] domain_name: [] emails: [] ... I'm about 99% sure that I'm not getting any results…
1
vote
2 answers

Need to parse whois output in perl

I need to find email address and name(of admin, registrar, tech if available) using perl. I have checked that whois output have varied output formats. I tried Net::ParseWhois and also Net::WhoisNG, but i dont get the email address or name for…
kailash19
  • 1,771
  • 3
  • 22
  • 39
1
vote
1 answer

Obtaining an authenticode for an Azure application

I am in the process of trying to obtain an authenticode certificate for our online application. I have paid for the cert (through KSoftware a reseller of Comodo). They insist that they require the WHOIS information of the sites address to match the…
Toby Holland
  • 1,029
  • 2
  • 14
  • 29
1
vote
1 answer

Amazon AWS For Whois?

I was looking for a Whois Api, but most of them charge heavy price and not reliable enough. We can code in Python or Php. We need to make a Whois lookup service, to integrate with our site. What AWS Resource we need for this? We need at least 5k…
Fred Glenn
  • 29
  • 1
  • 3
0
votes
2 answers

whois in java for Android

I'm making a whois in java for android to train about streams and tcp connections. But I have a problem. I have a php script, I wrote some time ago and I´m trying to make the same in java. this is my java code : public String consultawhois(String…
user1185430
  • 35
  • 2
  • 7
0
votes
3 answers

How to parse a line out of a file that contains a certain string with PHP?

With PHP I want to get the content of the line starting with descr: out of a whois record from RIPE IP adress ranges, so they should all look something like this: % This is RIPE NCC's Routing Information Service % whois gateway to collected BGP…
JohnnyFromBF
  • 9,873
  • 10
  • 45
  • 59
0
votes
1 answer

What software is out there for domain availability in bulk for free?

I am looking for software (possibly a website) where I can check domains in bulk for availability - and a very large number of them ~ 500 000 including tlds such as .in, .it, .nl and other 2 letter domains (not just .com, .net, .org etc). Does…
James
  • 30,496
  • 19
  • 86
  • 113
0
votes
1 answer

How to find the host of a website using PHP?

I am developing a website which will find the host of the website, i am using the tracert method and then using the end result of the output as the host, which ends with ip addresses sometimes instead of the domain names. Anybody has any ideas on…
Aamir Siddique
  • 334
  • 3
  • 15
0
votes
1 answer

What is the simplest way to execute WHOIS protocol with python?

Im looking for a library or a code module that is most reccomended for WHOIS protocol. Note that i've been allready googling it , but i didnt found what i was looking for. what i need is something like this : WHOIS(ip) and the output will be the…
RanZilber
  • 1,840
  • 4
  • 31
  • 42