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
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 : CFB.pm
# This code based slightly on the Systemics Crypt::CFB. # Parts Copyright (C) 1995, 1996 Systemics Ltd (http://www.systemics.com/) # All rights reserved. package Crypt::OpenPGP::CFB; use strict; sub new { my $class = shift; my $c = bless { }, $class; $c->init(@_); } sub init { my $c = shift; my($cipher, $iv) = @_; $c->{cipher} = $cipher; $c->{blocksize} = $cipher->blocksize; $c->{iv} = $iv || "\0" x $c->{blocksize}; $c; } sub sync { $_[0]->{unused} = '' } sub encrypt { my $c = shift; my($data) = @_; my $ret = ''; my $iv = $c->{iv}; my $out = $c->{unused} || ''; my $size = length $out; while ( $data ne '' ) { unless ($size) { $out = $c->{cipher}->encrypt($iv); $size = $c->{blocksize}; } my $in = substr $data, 0, $size, ''; $size -= (my $got = length $in); $iv .= ($in ^= substr $out, 0, $got, ''); substr $iv, 0, $got, ''; $ret .= $in; } $c->{unused} = $out; $c->{iv} = $iv; $ret; } sub decrypt { my $c = shift; my($data) = @_; my $ret = ''; my $iv = $c->{iv}; my $out = $c->{unused} || ''; my $size = length $out; while ( $data ne '' ) { unless ($size) { $out = $c->{cipher}->encrypt($iv); $size = $c->{blocksize}; } my $in = substr $data, 0, $size, ''; $size -= (my $got = length $in); substr $iv .= $in, 0, $got, ''; $ret .= ($in ^= substr $out, 0, $got, ''); } $c->{unused} = $out; $c->{iv} = $iv; $ret; } 1; __END__ =head1 NAME Crypt::OpenPGP::CFB - PGP Cipher Feedback Mode =head1 SYNOPSIS use Crypt::OpenPGP::CFB; my $key = 'foo bar'; my $cipher = Crypt::Blowfish->new( $key ); # for example my $cfb = Crypt::OpenPGP::CFB->new( $cipher ); my $plaintext = 'this is secret!'; my $ct = $cfb->encrypt( $plaintext ); my $pt = $cfb->decrypt( $ct ); =head1 DESCRIPTION I<Crypt::OpenPGP::CFB> implements the variant of Cipher Feedback mode that PGP uses in its encryption and decryption. The key difference with PGP CFB is that the CFB state is resynchronized at each encryption/decryption. This applies both when encrypting secret key data and in symmetric encryption of standard encrypted data. More differences are described in the OpenPGP RFC, in section 13.9 (OpenPGP CFB mode). Typically you should never need to directly use I<Crypt::OpenPGP::CFB>; I<Crypt::OpenPGP::Cipher> objects wrap around an instance of this class and provide a uniform interface to symmetric ciphers. See the documentation for that module for usage details. =head1 AUTHOR & COPYRIGHTS Please see the Crypt::OpenPGP manpage for author, copyright, and license information. =cut
Close