⚝
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
/
t
/
View File Name :
over-qq.t
use NetAddr::IP; # $Id: over-qq.t,v 1.1.1.1 2006/08/14 15:36:06 lem Exp $ my @addr = ('10.0.0.0/8', '192.168.0.0/16', '127.0.0.1/32'); $| = 1; print "1..", 5 * scalar @addr, "\n"; my $count = 1; for my $a (@addr) { my $ip = new NetAddr::IP $a; if ($a eq "$ip") { print "ok $count\n"; } else { print "not ok $count\n"; } ++ $count; if ($a eq $ip) { print "ok $count\n"; } else { print "not ok $count\n"; } ++ $count; if ($ip eq $a) { print "ok $count\n"; } else { print "not ok $count\n"; } ++ $count; if ($ip eq $ip) { print "ok $count\n"; } else { print "not ok $count\n"; } ++ $count; if ($ip == $ip) { print "ok $count\n"; } else { print "not ok $count\n"; } ++ $count; }