uawdijnntqw1x1x1
IP : 216.73.216.110
Hostname : panel.codeskitter.com
Kernel : Linux panel.codeskitter.com 6.8.0-100-generic #100-Ubuntu SMP PREEMPT_DYNAMIC Tue Jan 13 16:40:06 UTC 2026 x86_64
Disable Function : apache_child_terminate, apache_note, apache_setenv, define_syslog_variables, dl, link, opcache_get_status, openlog, pcntl_exec, pcntl_fork, pcntl_setpriority, popen, posix_getpwuid, posix_kill, posix_mkfifo, posix_setpgid, posix_setsid, posix_setuid
OS : Linux
PATH:
/
home
/
users
/
unlimited
/
www
/
codeskitter
/
..
/
admin.ondemand.codeskitter.site
/
app
/
Config
/
Filters.php
/
/
<?php namespace Config; use CodeIgniter\Config\BaseConfig; use CodeIgniter\Filters\CSRF; use CodeIgniter\Filters\DebugToolbar; use CodeIgniter\Filters\Honeypot; class Filters extends BaseConfig { /** * Configures aliases for Filter classes to * make reading things nicer and simpler. * * @var array */ public $aliases = [ 'csrf' => CSRF::class, 'toolbar' => DebugToolbar::class, 'honeypot' => Honeypot::class, 'admin_sanitizer' => \App\Filters\AdminPanelSanitizer::class, 'ImageFallback' => \App\Filters\ImageFallback::class, ]; /** * List of filter aliases that are always * applied before and after every request. * * @var array */ public $globals = [ 'before' => [ // 'csrf' =>[ // 'except' =>[ // "/api/[a-z0-9_-]+/[a-z0-9_-]+", // "/partner/api/[a-z0-9_-]+/[a-z0-9_-]+", // ] // ], 'admin_sanitizer' => ['except' => ['login/*', 'logout/*']], // Apply to all routes except login and logout ], 'after' => [ 'ImageFallback', // 'toolbar' => [ // 'except'=>[ // "/api/[a-z0-9_-]+/[a-z0-9_-]+", // "/partner/api/[a-z0-9_-]+/[a-z0-9_-]+", // ] // ], ], ]; /** * List of filter aliases that works on a * particular HTTP method (GET, POST, etc.). * * Example: * 'post' => ['csrf', 'throttle'] * * @var array */ public $methods = [ // 'post' => ['throttle'], // 'get' => ['throttle'], ]; /** * List of filter aliases that should run on any * before or after URI patterns. * * Example: * 'isLoggedIn' => ['before' => ['account/*', 'profiles/*']] * * @var array */ public $filters = []; }
/home/users/unlimited/www/codeskitter/../admin.ondemand.codeskitter.site/app/Config/Filters.php