HEX
Server: Apache
System: Linux pdx1-shared-a1-38 6.6.104-grsec-jammy+ #3 SMP Tue Sep 16 00:28:11 UTC 2025 x86_64
User: mmickelson (3396398)
PHP: 8.1.31
Disabled: NONE
Upload Files
File: //usr/share/doc/libnet-xwhois-perl/examples/creation_time
#!/usr/bin/perl -I../

use Net::XWhois; 
use Data::Dumper; 

my $w = new Net::XWhois; 

$w->register_parser ( Name   => 'INTERNIC',
                      Retain => 1, 
                      Parser => { 
                      	creation_time => 'Record created on (\S*?)\.\n',
				      } ); 


my $domain = shift; 
my $whois = new Net::XWhois Domain => $domain; 
print "$domain --\n"; 
print "Registrant: ", $whois->registrant ();
print "\nCreation Time of $domain: ", $whois->creation_time (); 
print "\n";

print Dumper $w;