WHOIS - Service that shows registrant of a domain name

learn more… | top users | synonyms

0
votes
1answer
47 views

Get the ISP of an IP in node.js

Is there a way to perform a whois on an IP to get the ISP that provides that IP in a Node.js/Express server ? I already got the IP, I'm not looking for a way to get the client's IP. I've found ways ...
2
votes
1answer
34 views

Whois query works with telnet but not netcat

I am trying to write an advanced whois client, so I have been experimenting with sending commands to whois servers using netcat (nc) in Arch Linux. For example, this works great: $ echo domain ...
0
votes
2answers
45 views

PHP: To display who owns a domain? [duplicate]

As a service, we would like to have on our website the ability for visitors to put in a domain name to see who owns it. I know there are other services on the web to do this for whois, but we would ...
0
votes
0answers
10 views

perl - Net::Whois::Raw not stripping whois disclaimers

I'm trying to write a Perl script that displays whois information for various servers. The whois servers, however return all types of disclaimers and other text within the replies. Net::Whois::Raw ...
1
vote
2answers
29 views

Using WhoIs to determine domain availability

I am using an API that does a WhoIs query to determine the availability of domains. However, it seems every TLD gives a different type of response, so I have to create custom searches for each one: ...
0
votes
0answers
43 views

EP-Dev Whois Script

I have installed the EP-Dev Whois script for domain checking (https://github.com/patiek/epdev-whois) on my site, and it seems to work except that upon testing I found that it was returning all results ...
0
votes
1answer
40 views

Whois Server block my ip address after 2 or 3 Query

I am writing domain checker for a website but i face funny issue. Some whois server which responsible for a domain like .WS (whois.worldsite.ws) or .CA (whois.cira.ca) Block ip address after 2 or 3 ...
0
votes
1answer
76 views

Warning: Illegal string offset 'handler' in C:\wamp\www\whois\whois\whois.gtld.php on line 57

I'm using phpwhois php class to find whois details of web domains (http://sourceforge.net/projects/phpwhois/) and i'm using this script on my localhost. When i run this script using below code it ...
0
votes
0answers
58 views

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) { ...
0
votes
1answer
74 views

packet sniffer - trace back to where content originated

I used sniffex.c as my starting point, and I've spent a few months working on getting the packet sniffer working the way I would like. It is a good tool for providing a summary of traffic flow in and ...
0
votes
1answer
86 views

Completed 500 Internal Server Error in 4ms NameError (uninitialized constant Site::Whois)

I'm using whois gem and i work great in development. When i upload it in production i have such error: Completed 500 Internal Server Error in 4ms NameError (uninitialized constant Site::Whois): ...
0
votes
1answer
237 views

PHP Script for Whois

I create php script for scan domains and know if free or no for register <?php if($_REQUEST['send']=="ok") { $server="".trim($domain_server_end).""; ...
0
votes
1answer
72 views

Global WHOIS data update time [closed]

I have a website what provides WHOIS service via built in API. You send a request to this site containing domain name and you get a response in JSON or XML format with WHOIS data. To make everything ...
0
votes
0answers
61 views

Whois apnic issue

Using the following code for whois lookups : public static string LookUp(string ip, string whoisServer){ string buff = string.Empty; string strDomain = ip + "\r\n"; byte[] arrDomain = ...
0
votes
2answers
76 views

execute a whois unix command using system()

Is there a way / is it possible to execute the unix whois query using php, possibly using system().? I am trying echo '<pre>'; $last_line = system('whois ryansmurphy.com', $retval); echo ' ...
0
votes
1answer
181 views

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 = ...
0
votes
1answer
157 views

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 ...
1
vote
1answer
160 views

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 = ...
0
votes
1answer
99 views

How to check if dns records and whois information of domain name changed? [closed]

I'm created a BOT which will scan the dns record and whois information of domains after every 24 hours and add to the database. If dns records and information does not match with the previous records ...
0
votes
2answers
162 views

Obtaining domain contact records in php [closed]

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 ?
0
votes
1answer
169 views

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, ...
0
votes
1answer
96 views

Whoisxmlapi API is not running

This API http://www.whoisxmlapi.com/whoisserver/WhoisService?domainName=xxxxxx is returning an error message as xml format. <ErrorMessage> <msg> IP Address 203.100.79.84 has 0/50 queries ...
0
votes
1answer
30 views

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 ...
4
votes
2answers
211 views

Strategies to reduce the whois query burden

Thank you in advance for your time, So I have been working on operations with strings in a recent 100 level CompSci course. I got the very "original" idea that I might write up a simple domain name ...
0
votes
2answers
255 views

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 ...
0
votes
1answer
252 views

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 ...
1
vote
1answer
132 views

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 ...
7
votes
1answer
329 views

Can someone recommend a whois java api for reverse lookup (lookup by IP)

Currently we are using the whois implementation by http://commons.apache.org/net/. This sometimes gives very basic information on a reverse IP lookup. It seems as though there are multiple data stores ...
0
votes
2answers
107 views

Bulk Retrieve Whois Contact Details [closed]

I have a new project idea but I've run into many walls with services that have limitations on how many times I can query domains. Does anyone know of a service I can use to query whois details for ...
1
vote
3answers
149 views

whois doesn't work in irb

I install whois using $ gem install whois and follow Ruby Whois but when I test it in irb, it gives error: 1.9.3p194 :001 > c = Whois::Client.new NameError: uninitialized constant Whois from ...
0
votes
1answer
109 views

How to change the creation date in domain registration record?

I'm interested to do it on domain .com zone. Does anyone know a registrar which will be able to do it?
1
vote
1answer
305 views

WHOIS server daemon

Is there any WHOIS server daemons to run on my serer and serve My requests? Is it possible to deploy own WHOIS server in the end of WHOIS hierarchy like DNS servers are?
0
votes
1answer
196 views

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 ...
0
votes
0answers
155 views

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: [] ...
0
votes
2answers
606 views

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, ...
0
votes
2answers
285 views

How can i get specific text from the PHPWHOIS array? [closed]

so the phpwhois query creats an array with all the information, how can i get only the ISP or ADRESS from that array? this is how it looks: Array ( [regrinfo] => Array ( ...
0
votes
2answers
879 views

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]; ...
0
votes
2answers
393 views

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 ...
1
vote
1answer
83 views

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 ...
-1
votes
2answers
80 views

Troubleshooting “class not found” error

Anyone tell me why I'm getting the error "Class 'Whois' not found". It's something to do with the line $whois = new Whois(); but I'm not sure what. <form method="post" action=""> <div ...
3
votes
1answer
675 views

Use fsockopen with proxy

I have a simple whois script if($conn = fsockopen ($whois_server, 43)) { fputs($conn, $domain."\r\n"); while(!feof($conn)) { $output .= fgets($conn, 128); } ...
0
votes
1answer
190 views

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 ...
1
vote
0answers
225 views

HTML Parsing and Screen Scraping with the Simple HTML DOM Library

Accessing Information: this is all on page with other content too: <h2 id="General-IP-Information">General IP Information</h2> <!-- PAC: --> <!-- rDNS: 132.123.23.23 --> ...
-5
votes
1answer
426 views

Data Scraping using php

Here is my code $ip=$_SERVER['REMOTE_ADDR']; $url=file_get_contents("http://whatismyipaddress.com/ip/$ip"); ...
0
votes
3answers
278 views

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']); ...
0
votes
2answers
136 views

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 ...
1
vote
1answer
274 views

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 ...
4
votes
3answers
771 views

download whois database [closed]

is there a way to periodically download the entire whois database for all the domain names? I am writing a program that needs to check the domain age and find the registrant given an input of a ...
0
votes
1answer
226 views

PHP - DENIC whois query with cURL doesn't work well

When I check the avability of a .de-domain with fsockopen it delivers always a result, but when do the same with cURL around 75% of the queries fail. curl_errno then delivers error-code 56 ...
0
votes
1answer
139 views

whois wildcard search on Ubuntu

I'm trying to search all domains that start with "marha" and end with ".com" using the Ubuntu terminal. This is what I'm trying: whois -H marha%.com However, this does NOT give me any results. ...

1 2 3 4