( ′∀`)σ≡σ☆))Д′)レ(゚∀゚;)ヘ=З=З=Зε≡(ノ´_ゝ`)ノ HEX
HEX
Server: Apache/2.4.58 (Ubuntu)
System: Linux mail.thebrand.ai 6.8.0-107-generic #107-Ubuntu SMP PREEMPT_DYNAMIC Fri Mar 13 19:51:50 UTC 2026 x86_64
User: www-data (33)
PHP: 8.3.6
Disabled: NONE
Upload Files
File: /var/www/html/tmpr/..//tmpr/../tmpr/..//tmpr/..//tmpr/../security/modules/fakebots-protection.php
<?php
// Fake Bots Protection
if ($settings['badbot_protection2'] == 1) {

    if ($fake_bot == 1) {
            
            $type = "Fake Bot";
            
            //Logging
            if ($row['badbot_logging'] == 1) {
                psec_logging($mysqli, $type);
            }
            
            //AutoBan
            if ($row['badbot_autoban'] == 1) {
                psec_autoban($mysqli, $type);
            }
            
            //E-Mail Notification
            if ($srow['mail_notifications'] == 1 && $row['badbot_mail'] == 1) {
                psec_mail($mysqli, $type);
            }
            
            echo '<meta http-equiv="refresh" content="0;url=' . $settings['projectsecurity_path'] . '/pages/fakebot-detected.php" />';
            exit;
    }
}
?>