⚝
One Hat Cyber Team
⚝
Your IP:
216.73.217.1
Server IP:
103.138.189.55
Server:
Linux s11638.sgp1.stableserver.net 5.14.0-570.32.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Aug 6 11:30:41 EDT 2025 x86_64
PHP Version:
7.2.34
Buat File
|
Buat Folder
Upload File
Eksekusi
Dir :
~
/
home
/
stikesnh
/
app
/
Config
/
Viewing : Filters.php
<?php namespace Config; use CodeIgniter\Config\BaseConfig; class Filters extends BaseConfig { // Makes reading things below nicer, // and simpler to change out script that's used. public $aliases = [ 'csrf' => \CodeIgniter\Filters\CSRF::class, 'toolbar' => \CodeIgniter\Filters\DebugToolbar::class, 'honeypot' => \CodeIgniter\Filters\Honeypot::class, 'login' => \Myth\Auth\Filters\LoginFilter::class, 'role' => \Myth\Auth\Filters\RoleFilter::class, 'permission' => \Myth\Auth\Filters\PermissionFilter::class, ]; // Always applied before every request public $globals = [ 'before' => [ //'honeypot' // 'csrf', ], 'after' => [ 'toolbar', //'honeypot' ], ]; // Works on all of a particular HTTP method // (GET, POST, etc) as BEFORE filters only // like: 'post' => ['CSRF', 'throttle'], public $methods = []; // List filter aliases and any before/after uri patterns // that they should run on, like: // 'isLoggedIn' => ['before' => ['account/*', 'profiles/*']], public $filters = []; }