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 : Config.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\Config; /** * @deprecated Use CodeIgniter\Config\Factories::config() */ class Config { /** * Create new configuration instances or return * a shared instance * * @param string $name Configuration name * @param bool $getShared Use shared instance * * @return mixed|null */ public static function get(string $name, bool $getShared = true) { return Factories::config($name, ['getShared' => $getShared]); } /** * Helper method for injecting mock instances while testing. * * @param object $instance */ public static function injectMock(string $name, $instance) { Factories::injectMock('config', $name, $instance); } /** * Resets the static arrays */ public static function reset() { Factories::reset('config'); } }
Close