Tul xxx Tul
User / IP
:
216.73.216.217
Host / Server
:
45.84.207.204 / aircan.me
System
:
Linux lt-bnk-web1726.main-hosting.eu 5.14.0-611.36.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Tue Mar 3 11:23:52 EST 2026 x86_64
Command
|
Upload
|
Create
Mass Deface
|
Jumping
|
Symlink
|
Reverse Shell
Ping
|
Port Scan
|
DNS Lookup
|
Whois
|
Header
|
cURL
:
/
home
/
u931257429
/
domains
/
aircan.me
/
public_html
/
vnet
/
Viewing: index.php
<?php declare(strict_types=1); // Punto de entrada (Front Controller) del sistema VNET. // Todas las peticiones llegan aquí vía .htaccess para mantener URLs limpias. define('ROOT_PATH', __DIR__); define('APP_PATH', ROOT_PATH . '/app'); define('APP_CONFIG', require APP_PATH . '/config/config.php'); define('BASE_URL', APP_CONFIG['base_url']); date_default_timezone_set(APP_CONFIG['timezone']); // Sesiones (base). Se inicializan aquí para que estén disponibles en todo el sistema. ini_set('session.use_strict_mode', '1'); ini_set('session.use_only_cookies', '1'); ini_set('session.cookie_httponly', '1'); $isHttps = !empty($_SERVER['HTTPS']) && $_SERVER['HTTPS'] !== 'off'; session_name('VNETSESSID'); session_set_cookie_params([ 'lifetime' => 0, 'path' => rtrim((string)BASE_URL, '/') . '/', 'domain' => '', 'secure' => $isHttps, 'httponly' => true, 'samesite' => 'Lax', ]); session_start(); // Autoloader simple (sin Composer) para cargar clases dentro de /app. spl_autoload_register(static function (string $class): void { $prefix = 'App\\'; $baseDir = APP_PATH . '/'; if (strncmp($prefix, $class, strlen($prefix)) !== 0) { return; } $relativeClass = substr($class, strlen($prefix)); $parts = explode('\\', $relativeClass); // Mapea el primer segmento del namespace a la carpeta real (en minúscula). // Ej: App\Controllers\LoginController -> app/controllers/LoginController.php $parts[0] = strtolower($parts[0]); $file = $baseDir . implode('/', $parts) . '.php'; if (is_file($file)) { require_once $file; } }); require_once APP_PATH . '/core/Router.php'; $router = new App\Core\Router(); $router->dispatch();
Coded With 💗 by
0x6ick