Windows NT DGPENSV2LPKMN 10.0 build 14393 (Windows Server 2016) AMD64
Apache/2.4.46 (Win64) OpenSSL/1.1.1h PHP/7.3.25
: 172.16.0.66 | : 172.16.0.254
Cant Read [ /etc/named.conf ]
7.3.25
SYSTEM
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
BLACK DEFEND!
README
+ Create Folder
+ Create File
[ A ]
[ C ]
[ D ]
C: /
xampp7 /
perl /
vendor /
lib /
Crypt /
OpenPGP /
[ HOME SHELL ]
Name
Size
Permission
Action
Key
[ DIR ]
drwxrwxrwx
Signature
[ DIR ]
drwxrwxrwx
.mad-root
0
B
-rw-rw-rw-
Armour.pm
7.91
KB
-rw-rw-rw-
Buffer.pm
2.11
KB
-rw-rw-rw-
CFB.pm
2.73
KB
-rw-rw-rw-
Certificate.pm
15.95
KB
-rw-rw-rw-
Cipher.pm
5.92
KB
-rw-rw-rw-
Ciphertext.pm
7.01
KB
-rw-rw-rw-
Compressed.pm
4.92
KB
-rw-rw-rw-
Config.pm
3.01
KB
-rw-rw-rw-
Constants.pm
2.39
KB
-rw-rw-rw-
Digest.pm
4.36
KB
-rw-rw-rw-
ErrorHandler.pm
2.37
KB
-rw-rw-rw-
Key.pm
6.11
KB
-rw-rw-rw-
KeyBlock.pm
3.64
KB
-rw-rw-rw-
KeyRing.pm
8.08
KB
-rw-rw-rw-
KeyServer.pm
4.32
KB
-rw-rw-rw-
MDC.pm
2.5
KB
-rw-rw-rw-
Marker.pm
893
B
-rw-rw-rw-
Message.pm
4.32
KB
-rw-rw-rw-
OnePassSig.pm
1.46
KB
-rw-rw-rw-
PacketFactory.pm
8.63
KB
-rw-rw-rw-
Plaintext.pm
3.24
KB
-rw-rw-rw-
S2k.pm
6.05
KB
-rw-rw-rw-
SKSessionKey.pm
6.15
KB
-rw-rw-rw-
SessionKey.pm
6.69
KB
-rw-rw-rw-
Signature.pm
12.44
KB
-rw-rw-rw-
Trust.pm
797
B
-rw-rw-rw-
UserID.pm
2.03
KB
-rw-rw-rw-
Util.pm
4.85
KB
-rw-rw-rw-
Words.pm
11.23
KB
-rw-rw-rw-
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Config.pm
package Crypt::OpenPGP::Config; use strict; use Crypt::OpenPGP::ErrorHandler; use base qw( Crypt::OpenPGP::ErrorHandler ); sub new { my $class = shift; my $cfg = bless { o => { @_ } }, $class; $cfg; } sub get { $_[0]->{o}{ $_[1] } } sub set { my $cfg = shift; my($key, $val) = @_; $cfg->{o}{$key} = $val; } { my %STANDARD = ( str => \&_set_str, bool => \&_set_bool, ); sub read_config { my $cfg = shift; my($compat, $cfg_file) = @_; my $class = join '::', __PACKAGE__, $compat; my $directives = $class->directives; local(*FH, $_, $/); $/ = "\n"; open FH, $cfg_file or return $cfg->error("Error opening file '$cfg_file': $!"); while (<FH>) { chomp; next if !/\S/ || /^#/; if (/^\s*([^\s=]+)(?:(?:(?:\s*=\s*)|\s+)(.*))?/) { my($key, $val) = ($1, $2); my $ref = $directives->{lc $key}; next unless $ref; my $code = ref($ref->[0]) eq 'CODE' ? $ref->[0] : $STANDARD{$ref->[0]}; $code->($cfg, $ref->[1], $val); } } close FH; } } sub _set_str { $_[0]->{o}{$_[1]} = $_[2] } { my %BOOL = ( off => 0, on => 1 ); sub _set_bool { my($cfg, $key, $val) = @_; $val = 1 unless defined $val; $val = $BOOL{$val} || $val; $cfg->{o}{$key} = $val; } } package Crypt::OpenPGP::Config::GnuPG; sub directives { { armor => [ 'bool', 'Armour' ], 'default-key' => [ 'str', 'DefaultKey' ], recipient => [ 'str', 'Recipient' ], 'default-recipient' => [ 'str', 'DefaultRecipient' ], 'default-recipient-self' => [ 'bool', 'DefaultSelfRecipient' ], 'encrypt-to' => [ 'str', 'Recipient' ], verbose => [ 'bool', 'Verbose' ], textmode => [ 'bool', 'TextMode' ], keyring => [ 'str', 'PubRing' ], 'secret-keyring' => [ 'str', 'SecRing' ], 'cipher-algo' => [ \&_set_cipher ], 'digest-algo' => [ 'str', 'Digest' ], 'compress-algo' => [ \&_set_compress ], } } { my %Ciphers = ( '3DES' => 'DES3', BLOWFISH => 'Blowfish', RIJNDAEL => 'Rijndael', RIJNDAEL192 => 'Rijndael192', RIJNDAEL256 => 'Rijndael256', TWOFISH => 'Twofish', CAST5 => 'CAST5', ); sub _set_cipher { $_[0]->{o}{Cipher} = $Ciphers{$_[2]} } my %Compress = ( 1 => 'ZIP', 2 => 'Zlib' ); sub _set_compress { $_[0]->{o}{Compress} = $Compress{$_[2]} } } package Crypt::OpenPGP::Config::PGP2; sub directives { { armor => [ 'bool', 'Armour' ], compress => [ 'bool', 'Compress' ], encrypttoself => [ 'bool', 'EncryptToSelf' ], myname => [ 'str', 'DefaultSelfRecipient' ], pubring => [ 'str', 'PubRing' ], secring => [ 'str', 'SecRing' ], } } package Crypt::OpenPGP::Config::PGP5; *directives = \&Crypt::OpenPGP::Config::PGP2::directives; 1;
Close