Linux server220.web-hosting.com 4.18.0-553.45.1.lve.el8.x86_64 #1 SMP Wed Mar 26 12:08:09 UTC 2025 x86_64
LiteSpeed
: 198.54.116.164 | : 216.73.216.179
Cant Read [ /etc/named.conf ]
7.4.33
adnangch
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
README
+ Create Folder
+ Create File
/
opt /
alt /
ruby23 /
lib64 /
ruby /
2.3.0 /
openssl /
[ HOME SHELL ]
Name
Size
Permission
Action
bn.rb
702
B
-rw-r--r--
buffering.rb
9.39
KB
-rw-r--r--
cipher.rb
1.53
KB
-rw-r--r--
config.rb
11.97
KB
-rw-r--r--
digest.rb
1.83
KB
-rw-r--r--
pkey.rb
983
B
-rw-r--r--
ssl.rb
13.12
KB
-rw-r--r--
x509.rb
5.01
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : pkey.rb
# frozen_string_literal: false module OpenSSL module PKey if defined?(OpenSSL::PKey::DH) class DH DEFAULT_512 = new <<-_end_of_pem_ -----BEGIN DH PARAMETERS----- MEYCQQD0zXHljRg/mJ9PYLACLv58Cd8VxBxxY7oEuCeURMiTqEhMym16rhhKgZG2 zk2O9uUIBIxSj+NKMURHGaFKyIvLAgEC -----END DH PARAMETERS----- _end_of_pem_ DEFAULT_1024 = new <<-_end_of_pem_ -----BEGIN DH PARAMETERS----- MIGHAoGBAJ0lOVy0VIr/JebWn0zDwY2h+rqITFOpdNr6ugsgvkDXuucdcChhYExJ AV/ZD2AWPbrTqV76mGRgJg4EddgT1zG0jq3rnFdMj2XzkBYx3BVvfR0Arnby0RHR T4h7KZ/2zmjvV+eF8kBUHBJAojUlzxKj4QeO2x20FP9X5xmNUXeDAgEC -----END DH PARAMETERS----- _end_of_pem_ end DEFAULT_TMP_DH_CALLBACK = lambda { |ctx, is_export, keylen| warn "using default DH parameters." if $VERBOSE case keylen when 512 then OpenSSL::PKey::DH::DEFAULT_512 when 1024 then OpenSSL::PKey::DH::DEFAULT_1024 else nil end } else DEFAULT_TMP_DH_CALLBACK = nil end end end
Close