| Server IP : 172.67.201.108 / Your IP : 216.73.216.25 Web Server : Apache/2.4.68 (Amazon Linux) OpenSSL/3.5.5 System : Linux ip-172-31-69-123.ec2.internal 6.1.176-223.369.amzn2023.x86_64 #1 SMP PREEMPT_DYNAMIC Fri Jul 24 13:34:27 UTC 2026 x86_64 User : ec2-user ( 1000) PHP Version : 8.4.23 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/banners/domains/mcifa.com/public_html/ |
Upload File : |
<?php
/**
* Application initialization - PHP equivalent of Application.cfm
* Include this at the top of every page (via header.php)
*/
if (session_status() === PHP_SESSION_NONE) {
session_start();
}
// SQL injection protection on query string (defense-in-depth)
$qs = $_SERVER['QUERY_STRING'] ?? '';
$blocked = ['CONCAT', 'declare', 'starusers', '=-1', '@@', 'group_key', 'schema', ';'];
foreach ($blocked as $pattern) {
if (stripos($qs, $pattern) !== false) {
exit;
}
}
// Session defaults
if (!isset($_SESSION['Member'])) {
$_SESSION['Member'] = '';
}
if (!isset($_SESSION['Password'])) {
$_SESSION['Password'] = '';
}
// CDN variable
$serveme = 'bwwstatic.com';
// UTF-8 encoding
mb_internal_encoding('UTF-8');
header('Content-Type: text/html; charset=UTF-8');