⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.177
Server IP:
50.6.168.112
Server:
Linux server-617809.webnetzimbabwe.com 5.14.0-570.25.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Jul 9 04:57:09 EDT 2025 x86_64
Server Software:
Apache
PHP Version:
8.4.10
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home
/
.cpan
/
build
/
NetAddr-IP-4.079-0
/
Lite
/
t
/
View File Name :
is_local.t
#use diagnostics; use NetAddr::IP::Lite; $| = 1; print "1..9\n"; my $test = 1; sub ok() { print 'ok ',$test++,"\n"; } my @ips = qw( 126.255.255.255 0 127.0.0.0 1 127.0.0.1 1 127.255.255.254 1 127.255.255.255 1 128.0.0.0 0 ::0 0 ::1 1 ::2 0 ); for (my $i=0;$i<=$#ips;$i+=2) { my $ip = new NetAddr::IP::Lite($ips[$i]); my $got = $ip->is_local(); my $exp = $ips[$i+1]; print $ip," got: $got, exp: $exp\nnot " unless $got == $exp; &ok; }