Linux ns1.utparral.edu.mx 6.8.0-79-generic #79~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Aug 15 16:54:53 UTC 2 x86_64
Apache/2.4.58 (Unix) OpenSSL/1.1.1w PHP/8.2.12 mod_perl/2.0.12 Perl/v5.34.1
: 10.10.1.9 | : 10.10.1.254
Cant Read [ /etc/named.conf ]
daemon
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
README
+ Create Folder
+ Create File
/
opt /
lampp /
phpmyadmin /
libraries /
[ HOME SHELL ]
Name
Size
Permission
Action
cache
[ DIR ]
drwxr-xr-x
classes
[ DIR ]
drwxr-xr-x
advisory_rules_generic.php
36.04
KB
-rw-r--r--
advisory_rules_mysql_before80003.php
6.19
KB
-rw-r--r--
config.default.php
70.96
KB
-rw-r--r--
config.values.php
13.17
KB
-rw-r--r--
constants.php
1.88
KB
-rw-r--r--
language_stats.inc.php
1.63
KB
-rw-r--r--
routes.php
19.5
KB
-rw-r--r--
services_controllers.php
65.17
KB
-rw-r--r--
services_loader.php
1.59
KB
-rw-r--r--
services.php
7.69
KB
-rw-r--r--
vendor_config.php
2.05
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : constants.php
<?php declare(strict_types=1); if (! defined('PHPMYADMIN')) { exit; } $vendorConfig = require_once ROOT_PATH . 'libraries/vendor_config.php'; if ( ! is_array($vendorConfig) || ! isset( $vendorConfig['autoloadFile'], $vendorConfig['tempDir'], $vendorConfig['changeLogFile'], $vendorConfig['licenseFile'], $vendorConfig['sqlDir'], $vendorConfig['configFile'], $vendorConfig['customHeaderFile'], $vendorConfig['customFooterFile'], $vendorConfig['versionCheckDefault'], $vendorConfig['localePath'], $vendorConfig['cacheDir'], $vendorConfig['versionSuffix'] ) ) { exit; } // phpcs:disable PSR1.Files.SideEffects define('AUTOLOAD_FILE', (string) $vendorConfig['autoloadFile']); define('TEMP_DIR', (string) $vendorConfig['tempDir']); define('CHANGELOG_FILE', (string) $vendorConfig['changeLogFile']); define('LICENSE_FILE', (string) $vendorConfig['licenseFile']); define('SQL_DIR', (string) $vendorConfig['sqlDir']); define('CONFIG_FILE', (string) $vendorConfig['configFile']); define('CUSTOM_HEADER_FILE', (string) $vendorConfig['customHeaderFile']); define('CUSTOM_FOOTER_FILE', (string) $vendorConfig['customFooterFile']); define('VERSION_CHECK_DEFAULT', (bool) $vendorConfig['versionCheckDefault']); define('LOCALE_PATH', (string) $vendorConfig['localePath']); define('CACHE_DIR', (string) $vendorConfig['cacheDir']); define('VERSION_SUFFIX', (string) $vendorConfig['versionSuffix']); /** * TCPDF workaround. Avoid referring to nonexistent files (causes warnings when open_basedir is used). * This is defined to avoid the TCPDF code to search for a directory outside of open_basedir. * This value if not used but is useful, no header logic is used for PDF exports. * * @see https://github.com/phpmyadmin/phpmyadmin/issues/16709 */ define('K_PATH_IMAGES', ROOT_PATH); // phpcs:enable unset($vendorConfig);
Close