Max's Whois 1.0 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News Max's Whois 1.0 (Default branch)
# 1  
Old 01-21-2008
Max's Whois 1.0 (Default branch)

Image Max's Whois is a semi-professional domain whois script that allows you to check domain availability before registration. It supports the most important TLDs like .com, .net, .org, .biz, .info, .name, etc. (a list of almost 100 TLDs is included). Installation and setup is very simple. You only need to upload the files to your Web server and set the relevant TLDs. The script is written in PHP using object oriented design. The frontend uses CSS, so changing the style is very simple.Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

8 More Discussions You Might Find Interesting

1. What is on Your Mind?

Whois Lookup

Hi. I've just made our internal Whois lookup service available for all forum users, not only moderators and admins. Whois Database It's basically the same whois info you can get from your command line and many other web sites. If you would like to see other features, please post in... (0 Replies)
Discussion started by: Neo
0 Replies

2. IP Networking

Whois or nslookup.. for domain availability?

Hi, i want to make linux bash script which will periodically check for certain domain availability, i mean like every 100miliseconds. I want to ask which command i need to use, so the result is not cached and i dont cause any inappropriate overload? i see: whois domainname.com (when No... (1 Reply)
Discussion started by: postcd
1 Replies

3. Shell Programming and Scripting

How to obtain info from whois?

Hello, do you know any clever way to get information whether certain domain name become avaialble for registration from bash script? Would be good to check for the availability like every 100miliseconds, i want to catch domain. (1 Reply)
Discussion started by: postcd
1 Replies

4. UNIX for Dummies Questions & Answers

How can I do whois -r with a input file?

Hello, I was wondering how I can do a whois from a file with lots of ip's in this format 0.0.0.0 0.0.0.0 0.0.0.0 0.0.0.0 0.0.0.0 0.0.0.0 And so on, then print the whois data from all the ip's to one single file sort of like this "whois -r 'ipfile' > 'whoisfile'" Thanks in advance! ... (3 Replies)
Discussion started by: uxfuser
3 Replies

5. Shell Programming and Scripting

whois country help

Hello folks, I have list of ips like 1.1.1.1 2.2.2.2 3.3.3.3 4.4.4.4 whois 1.1.1.1 |grep -E 'country|Country' it show country=US or whatever. so i have number of ips in text file, how i can use above script to automate output like 1.1.1.1 US 2.2.2.2 CA 3.3.3.3 FR (3 Replies)
Discussion started by: learnbash
3 Replies

6. Shell Programming and Scripting

whois scripting

Hi guys, I need a script that given an IP address, say IPA, do the following: - queries "whois IPA" - extracts, from the whois answer, the IP network string indicated after the string "route:", - searches the IP network string in a given text file, say CIDR2ASN.txt, which has several lines,... (1 Reply)
Discussion started by: stesecci
1 Replies

7. Shell Programming and Scripting

whois VS jwhois and timeout

I have a script that does a whois lookup that worked fine on a previous server. It used whois with the t option to timeout in 5 seconds. A while back I upgraded to a new server and the script had problems. I found out the new server didn't even have whois. The whois command was symlinked to jwhois... (4 Replies)
Discussion started by: PWSwebmaster
4 Replies

8. IP Networking

Traceroute and Whois mystery

Hey folks, I've been charged with the job of finding out who's been screwing around with the download counts on our site. So now I have this huge list of IP's that I supposed to match to such and such developer. I was told by one guy that I should just do a traceroute and that'd tell me where... (2 Replies)
Discussion started by: DumDum
2 Replies
Login or Register to Ask a Question
Net::Whois::RIPE(3pm)					User Contributed Perl Documentation				     Net::Whois::RIPE(3pm)

NAME
Net::Whois::RIPE - implementation of RIPE Whois. SYNOPSIS
use Net::Whois::RIPE; $whois = Net::Whois::RIPE->new($host); $whois = Net::Whois::RIPE->new($host,Timeout=>10); $whois = Net::Whois::RIPE->new($host,Timeout=>10,Port=>43); $whois->no_recursive; $whois->source('APNIC'); $whois->type('inetnum'); foreach $inet ($whois->query('203.203.203.203')) { print $inet->inetnum, " "; } $whois->query('202.12.28.0'); $whois->update($text); # to minimise memory requirements on large lookups... $iterator = $whois->query_iterator('DNS3-AP'); while ($obj = $iterator->next) { ... } $whois->template('inetnum'); $whois->verbose_template('inetnum'); $whois->debug(1); $whois->max_read_size(1024); $whois->search_all; # -a $whois->fast_raw; # -F $whois->find_less; # -L $whois->find_more; # -m $whois->find_all_more; # -M $whois->no_recursive; # -r $whois->no_referral; # -R $whois->no_sugar; # -S $whois->no_filtering; # -B $whois->no_grouping; # -G $whois->inverse_lookup($attribute); # -i $attribute $whois->source('APNIC'); # -s APNIC $whois->type('person'); # -T person # query only $whois->port(); $whois->server(); DESCRIPTION
Net::Whois::RIPE class implementing a RIPE whois client. CONSTRUCTOR
new (HOST [,OPTIONS]) This is the constructor for a new Net::Whois::RIPE object. "HOST" is the name of the remote host to which a whois connection is required. "OPTIONS" are passed in a hash like fashion, using key and value pairs. Possible options are: Port - The port number to connect to on the remote machine Timeout - Set a timeout value in seconds (defaults to 30) Debug - See debug methog. The constructor returns undef on failure. If debug is on then a message is carped about the failure. METHODS
template(WHOIS_OBJECT_NAME) Sends a template request to whois host for a template of WHOIS_OBJECT_NAME. Results are returned in a Net::Whois::RIPE::Object object. The template is retrieved via the content method on the Net::Whois::RIPE::Object object. $t = $whois->template('all'); $t = $whois->template('inetnum'); $t = $whois->template('person'); $text = $t->content; If WHOIS_OBJECT_NAME is undefined then the method will carp (under debug) and return undef. verbose_template(WHOIS_OBJECT_NAME) Like template, but sends a verbose template request to the whois host for WHOIS_OBJECT_NAME. Results are returned in a Net::Whois::RIPE::Object object. The verbose template is retrieved via the content method on the Net::Whois::RIPE::Object object. $vt = $whois->verbose_template('person'); $text = $vt->content; If WHOIS_OBJECT_NAME is undefined then the method will carp and return undef. query(QUERY_TEXT) Formats query flag options (see below) and sends them and QUERY_TEXT to the server. If called in a scalar context then the first object returned from the server is passed back as a single Net::Whois::RIPE::Object object. In an array context, all returned objects returned from the server are parsed into in a list and returned (potentially quite large). $q = $whois->query('key') # a single Query @q = $whois->query('key') # an array of Queries If QUERY_KEY is undefined, undef is returned. Any failure will carp and return undef. If max_read_size is greater than zero then the server response will be abandoned when greater than max_read_size bytes have been read. The last object read will have warning messages set to indicate that the response was cut. query_iterator(QUERY_TEXT) Similar to query except that a Net::Whois::RIPE::Iterator object is returned. This object is used to iterate over the results of the query. This was created in response to huge results returned by whois queries where over 1000 objects may be returned. Query iterator returns an object at a time via the next method as opposed to query which returns an array of objects. $iterator = $whois->query_iterator or die "unable to create iterator"; while ($obj = $iterator->next) { ... } update(UPDATE_TEXT) Sends UPDATE_TEXT directly to server. Query flag options (below) are not used by update. Server response is returned via Net::Whois::RIPE::Object. Use the content method on the Query object to via server response. my $q = $whois->update($message) print $q->content If UPDATE_TEXT is undefined, undef is returned. Any failure will carp and return undef. If no changed field can be found to determine a login and domain the method will carp and return undef. If max_read_size is greater than zero then the server response will be abandoned when greater than max_read_size bytes have been read. debug(LEVEL) Sets/gets debugging level on the class or an object. 0 - no debugging 1 - debugging on 2 - carp on IO::Socket::INET max_read_size([INTEGER]) Sets/reads the maximum number of bytes that Net::Whois::RIPE will read before returning. This is to limit huge responses from the server overloading scripts. a max_read_size of zero indicates no limit. flag options The following flags may be set by calling the method. Their meaning is identical to the ripe whois client. These flags require no arguments, they simply set the flag on. Method Equivalent whois flag search_all -a fast_raw -F find_less -L find_more -m find_all_more -M no_recursive -r no_referral -R no_sugar -S no_filtering -B no_grouping -G flag options taking values The following flags may be set by calling the method with a value. There meaning is identical to the ripe whois client. Method Equivalent whois flag inverse_lookup(ATTRIBUTE) -i ATTRIBUTE port(PORT) -p PORT source(SOURCE) -s SOURCE type(TYPE) -T TYPE AUTHOR
Paul Gampe, <pgampe@users.sourceforge.net> Kevin Baker, <shagol@users.sourceforge.net> Bruce Campbell, <bxc@users.sourceforge.net> TODO
Update could be made clever enough to determine if it was been passed a string to update or a Net::Whois::RIPE::Object and adapt its behaviour. SEE ALSO
Net::Whois::RIPE::Iterator Net::Whois::RIPE::Object Net::Whois::RIPE::Object::Template http://www.ripe.net/db/about.html COPYRIGHT
Copyright (C) 1998 Paul Gampe and APNIC Pty. Ltd. Copyright (C) 2000 Kevin Baker and APNIC Pty. Ltd. Copyright (C) 2004-2005 Paul Gampe This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 1, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. perl v5.10.0 2006-04-17 Net::Whois::RIPE(3pm)