This is the new home of the egghelp.org community forum.
All data has been migrated (including user logins/passwords) to a new phpBB version.


For more information, see this announcement post. Click the X in the top right-corner of this box to dismiss this message.

I need a whois script to check domain names recursively

Old posts that have not been replied to for several years.
Locked
h
hariskhan

I need a whois script to check domain names recursively

Post by hariskhan »

Hello,

I need a whois script to check the domain names and check them recursively. Does anyone know of such script on the net?
User avatar
De Kus
Revered One
Posts: 1361
Joined: Sun Dec 15, 2002 11:41 am
Location: Germany

Post by De Kus »

ever read the tcl-command.doc? there is an intresting function called dnslookup (you want to get the ip from the hostname, dont you?). to get the hostname use something like: [string range $uhost [string first @ $uhost] e]
h
hariskhan

Sorry, but that's not what I'm looking for

Post by hariskhan »

What I'm looking for is a script that works just like the 'whois' command in UNIX/Linux. Its used to get 'registration' information of domain names. Say if I want to get to know who the domain egghelp.org belongs to, I will type 'whois egghelp.org' on a UNIX/Linux console and I will get an output that 'it' belongs to 'them'.

Get the idea? I don't want a script for 'nslookup'. NO! There are many scripts for that purpose

Haris
User avatar
Yourname
Master
Posts: 358
Joined: Mon Sep 24, 2001 8:00 pm
Location: Toronto

Post by Yourname »

I understand what haris means, but as far as I know, unfortunately, there isnt such a script in public domain, maybe private.
Dormant egghead.
User avatar
GodOfSuicide
Master
Posts: 463
Joined: Mon Jun 17, 2002 8:00 pm
Location: Austria

Post by GodOfSuicide »

i dont think its that hard....

just take some domain checker like domainabfrage.net

then use it like this :
the returned output is in TXT format, so it shouldn't be that hard to parse.

I think good TCL Coders like ppslim, caesar, slenox, wcc, yourname, papilion and the many many other coders in here can do an output, i for myself dont think i could do such complex work, but i hope this urls up there can help.

<EDIT>
just found out "whois planetquake.de" and stuff on my shell also returns this data...so you wouldnt even have to fetch data from a webpage but by executing and parsing "whois" output. The URL's above may help with windrop (windows doesn't have this "whois" command i think...)
Locked