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.1
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
/
usr /
share /
phpmyadmin /
libraries /
[ HOME SHELL ]
Name
Size
Permission
Action
cache
[ DIR ]
drwxr-xr-x
certs
[ DIR ]
drwxr-xr-x
classes
[ DIR ]
drwxr-xr-x
advisory_rules_generic.php
34.35
KB
-rw-r--r--
advisory_rules_mysql_before800...
6.19
KB
-rw-r--r--
common.inc.php
8.46
KB
-rw-r--r--
config.default.php
70.13
KB
-rw-r--r--
config.values.php
13.2
KB
-rw-r--r--
language_stats.inc.php
1.61
KB
-rw-r--r--
routes.php
23.65
KB
-rw-r--r--
services.php
6.76
KB
-rw-r--r--
services_controllers.php
36.88
KB
-rw-r--r--
services_loader.php
1.58
KB
-rw-r--r--
vendor_config.php
2.17
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : vendor_config.php
<?php /** * File for vendor customization, you can change here paths or some behaviour, * which vendors such as Linux distributions might want to change. * * For changing this file you should know what you are doing. For this reason * options here are not part of normal configuration. */ declare(strict_types=1); // phpcs:disable PSR1.Files.SideEffects if (! defined('PHPMYADMIN')) { exit; } // phpcs:enable /** * Path to vendor autoload file. Useful when you want to * have have vendor dependencies somewhere else. */ define('AUTOLOAD_FILE', './autoload.php'); /** * Directory where cache files are stored. */ define('TEMP_DIR', '/var/lib/phpmyadmin/tmp/'); /** * Path to changelog file, can be gzip compressed. Useful when you want to * have documentation somewhere else, eg. /usr/share/doc. */ define('CHANGELOG_FILE', '/usr/share/doc/phpmyadmin/changelog.gz'); /** * Path to license file. Useful when you want to have documentation somewhere * else, eg. /usr/share/doc. */ define('LICENSE_FILE', '/usr/share/doc/phpmyadmin/copyright'); /** * Directory where SQL scripts to create/upgrade configuration storage reside. */ define('SQL_DIR', ROOT_PATH . 'sql' . DIRECTORY_SEPARATOR); /** * Directory where configuration files are stored. * It is not used directly in code, just a convenient * define used further in this file. */ define('CONFIG_DIR', '/etc/phpmyadmin/'); /** * Filename of a configuration file. */ define('CONFIG_FILE', CONFIG_DIR . 'config.inc.php'); /** * Filename of custom header file. */ define('CUSTOM_HEADER_FILE', CONFIG_DIR . 'config.header.inc.php'); /** * Filename of custom footer file. */ define('CUSTOM_FOOTER_FILE', CONFIG_DIR . 'config.footer.inc.php'); /** * Default value for check for version upgrades. */ define('VERSION_CHECK_DEFAULT', false); /** * Path to files with compiled locales (*.mo) */ define('LOCALE_PATH', ROOT_PATH . 'locale' . DIRECTORY_SEPARATOR); /** * Define the cache directory for routing cache an other cache files */ define('CACHE_DIR', ROOT_PATH . 'libraries' . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR); /** * Suffix to add to the phpMyAdmin version */ define('VERSION_SUFFIX', 'deb5ubuntu1');
Close