Beefy Boxes and Bandwidth Generously Provided by pair Networks
Do you know where your variables are?
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
#!/usr/bin/perl -w use strict; use Net::DNS; use Net::ParseWhois; die "Usage: whois_domain.pl DOMAIN(S)\n" unless @ARGV; while (@ARGV) { my $domain = shift; my $soa_domain; FIND_SOA: { my $res = new Net::DNS::Resolver; my $q = $res->send($domain, "SOA"); for my $sec (qw(answer authority)) { my $meth = $q->can($sec) or next; for my $rec ($meth->($q)) { next unless $rec->isa('Net::DNS::RR::SOA'); $soa_domain = $rec->name; last FIND_SOA if $soa_domain; } } } #die "Couldn't find SOA for $domain\n" unless defined $soa_domain; $soa_domain ||= $domain; my $whois = new Net::ParseWhois::Domain($soa_domain); warn "Couldn't connect to Whois server$/", next unless $whois; warn "No Whois match for $soa_domain$/", next unless $whois->ok; # print out whois match print "Whois Server: ", $whois->whois_server, $/; print $/; print "Registrar: ", $whois->registrar, $/; print "Domain: ", $whois->domain, $/; print "Name: ", $whois->name, $/; print "Tag: ", $whois->tag, $/; print $/; print "Address:", $/; print "\t", $_, $/ for $whois->address; print $/; print "Country: ", $whois->country, $/; print $/; print "Name Servers:", $/; printf "\t%s (%s)$/", @$_ for @{$whois->servers}; print $/; if (my $c = $whois->contacts) { print "Contacts:", $/; for my $t (sort keys %$c) { print " " x 4, $t, ":", $/; print "\t", $_, $/ for @{$c->{$t}}; } print $/; } print "Record created: ", $whois->record_created, $/; print "Record updated: ", $whois->record_updated, $/; print "Record expires: ", $whois->record_expires, $/; print "=" x 76, $/ if @ARGV; }

In reply to Whois+DNS by mdillon

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others surveying the Monastery: (3)
As of 2024-04-20 13:29 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found