473,382 Members | 1,736 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,382 software developers and data experts.

Retrieving info from a whois query

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.
Jul 17 '05 #1
6 2839
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.
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.


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.

Jul 17 '05 #2
You will probably need to manually query the whois server using the
RWhois protocol (http://www.faqs.org/rfcs/rfc1714.html) and fsockopen.
Jul 17 '05 #3
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" <jd*****@gmail.com> a écrit dans le message de
news:16**************************@posting.google.c om...
You will probably need to manually query the whois server using the
RWhois protocol (http://www.faqs.org/rfcs/rfc1714.html) and fsockopen.

Jul 17 '05 #4
Fred wrote:
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" <jd*****@gmail.com> a écrit dans le message de
news:16**************************@posting.google.c om...
You will probably need to manually query the whois server using the
RWhois protocol (http://www.faqs.org/rfcs/rfc1714.html) and fsockopen.



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
Jul 17 '05 #5
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" <ma*****@firstdbasource.com> a écrit dans le message de
news:E8*****************@newssvr23.news.prodigy.co m...
Fred wrote:
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" <jd*****@gmail.com> a écrit dans le message de
news:16**************************@posting.google.c om...
You will probably need to manually query the whois server using the
RWhois protocol (http://www.faqs.org/rfcs/rfc1714.html) and fsockopen.



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

Jul 17 '05 #6
Fred wrote:
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" <ma*****@firstdbasource.com> a écrit dans le message de
news:E8*****************@newssvr23.news.prodigy.co m...
Fred wrote:
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" <jd*****@gmail.com> a écrit dans le message de
news:16**************************@posting.googl e.com...
You will probably need to manually query the whois server using the
RWhois protocol (http://www.faqs.org/rfcs/rfc1714.html) and fsockopen.

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



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)

Jul 17 '05 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

5
by: elyob | last post by:
I've got a number of domains, and want to check the expiry date automatically. There's plenty of whois scripts, but the output from the different whois servers are not always the same. Does...
2
by: James | last post by:
As a security feature of my site, I want the IP details to be recorded in certain situations. I suppose I have to use the Rwhois server to do this, though I don't know how to do that. Of course...
5
by: Gerrit Muller | last post by:
I am migrating a website from a UNIX based machine to an Windows machine. In the logfiles I got from the old machine I mostly got domain names and sometimes only IP addresses. The Windows machine...
0
by: Yair Nissan | last post by:
Hi, I want to make a .Net class that would make queries to a WhoIs server. I had no problem doing so on my comp back home, however my comp at work is using a proxy server, and I can't make any...
13
by: RHPT | last post by:
I am wanting to capture the XML posted by an InfoPath form with .NET, but I cannot figure out how to capture the XML stream sent back by the InfoPath form. With Classic ASP, I could just create an...
3
by: Vjay77 | last post by:
As a result from who is I am getting this: > > NOTICE AND TERMS OF USE: You are not authorized to access or query our WHOIS database through the use of high-volume, automated, electronic...
0
by: skip | last post by:
I'm looking to get whois information for a given domain from Python. I'm mostly interested in record update and creation dates at the moment, but eventually might want more. I stumbled upon a...
5
by: Sanjay Pais | last post by:
I have a table with over 1.3 million rows. I am retrieving only 20 at a time using the with - over clauses In query analyser, the data is retrieved in under a second. When retrieving using the...
3
by: dmorand | last post by:
I have a page where I'm using ajax to retrieve some employee info when a user clicks a "Retrieve Employee Info" button. The issue I'm having is that when the user updates the employee info,...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
0
by: ryjfgjl | last post by:
In our work, we often need to import Excel data into databases (such as MySQL, SQL Server, Oracle) for data analysis and processing. Usually, we use database tools like Navicat or the Excel import...
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.