Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

Retrieving info from a whois query

8 views
Skip to first unread message

Fred

unread,
Jul 8, 2004, 10:25:42 AM7/8/04
to
Hi !
Can some one give me a little step by step to put me onthe right way..
I'd like to use PHP with Postresql.
I need to make many whois query on the domain names that we own, to store
the information such as expiration date and so in our DB.
I was thinking of :
using php to open the url of the query, retrieve the new web page with ftp
mode,
parsing the page with some "expression régulieres" and then uploading the
found data in my DB...

Can you tell me what you think of that, is there any way to be quicker and
easier, and maybe some advice on how to retrieve and parse the file..
because I dont really know how to..

Thank you..

Fred.


Michael Austin

unread,
Jul 8, 2004, 4:38:47 PM7/8/04
to

Internic no longer allows scripted access to the whois information, they
require you to enter a "security code" that is in a JPG and is not textual.

There are whois applicatons that search most of the registrars for the
information, but you will need to find one that works and script it from
there... It was soooo easy when there was only one registrar... One of
the other issues is the fact that not all registrars present the data in
the same format.

Michael Austin.

John Downey

unread,
Jul 9, 2004, 1:35:49 AM7/9/04
to
You will probably need to manually query the whois server using the
RWhois protocol (http://www.faqs.org/rfcs/rfc1714.html) and fsockopen.

Fred

unread,
Jul 9, 2004, 9:43:45 AM7/9/04
to
Thanl you.
I'll read this.
It's also advised on how to collect the data from the whois query and to
store it in the DB ?
We de have a lot of registrars, this is what we will go on with the whois
query.
But actually I'll have to log manually on each registrar to know all the
domaines we own and as they are displayed like 20 domaines/page, it will
take time to read them all :-(


"John Downey" <jdo...@gmail.com> a écrit dans le message de
news:163e97b1.04070...@posting.google.com...

R. Rajesh Jeba Anbiah

unread,
Jul 9, 2004, 10:02:34 AM7/9/04
to
Fred wrote:
> Hi !
> Can some one give me a little step by step to put me onthe right
way..
> I'd like to use PHP with Postresql.
> I need to make many whois query on the domain names that we own, to
store
> the information such as expiration date and so in our DB.

<snip>

<?php
//
function whois($host, $command)
{
$fp = fsockopen ($host, 43, $errno, $errstr, 100);
if (!$fp)
$result = $errstr . $errno . "\n";
else
{
fputs ($fp, $command . "\r\n\r\n");
$result = '';
while (!feof($fp))
$result .= fgets ($fp, 128);
fclose ($fp);
}
return $result;
}

//debug...
echo whois('whois.internic.net', 'php.net');
?>

See their TOS.
--
| Just another PHP saint |
Email: rrjanbiah-at-Y!com

Michael Austin

unread,
Jul 9, 2004, 10:41:40 AM7/9/04
to

Or!!!! you could contract someone that already has this code available
(but not on Linux or Windows) that can do this for you and send you a
CSV file you can load into your database. Some guy by the name of
Michael Austin comes to mind... :) :)

Michael Austin
http://www.firstdbasource.com

Fred

unread,
Jul 9, 2004, 10:50:06 AM7/9/04
to
Not on linux nor windows ?
so where ??!
and.. your code juste store the data in your CSV file ?
I wish I could ask this cool guy to help me a little bit ;-)

"Michael Austin" <mau...@firstdbasource.com> a écrit dans le message de
news:E8yHc.7354$d92....@newssvr23.news.prodigy.com...

Michael Austin

unread,
Jul 9, 2004, 11:55:15 AM7/9/04
to

I recently received a whois kit that runs only on OpenVMS that talks to
nearly every registrar - at least a large number of them... I have a
whois page that gets the data for a single domain name. A slight
modification of this page would be able to iteratively read a file or db
containing the list of domains, do the inquiry and parse the information
you are looking for and output it in whatever format suits your fancy.
Unfortunately, this particular whois program does not have sources
available for porting to *x or Wxx.

And currently being unemployed, I have lots of time on my hands, but I
also have this quirk whereby, for some unexplainable reason, I need to
be able to eat as well... ;) (I also presume that the author of the
whois app also likes to be able to eat. )

Michael Austin.
http://www.firstdbasource.com/donation.html (works in IE - having
problems with FireFox)

0 new messages