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 /
htdocs /
phpMyAdmin /
libraries /
config /
[ HOME SHELL ]
Name
Size
Permission
Action
ConfigFile.php
14.66
KB
-rwxrwxr-x
config_functions.lib.php
1.41
KB
-rwxrwxr-x
FormDisplay.php
28.87
KB
-rwxrwxr-x
FormDisplay.tpl.php
16.89
KB
-rwxrwxr-x
Form.php
6.04
KB
-rwxrwxr-x
messages.inc.php
48.93
KB
-rwxrwxr-x
page_settings.forms.php
783
B
-rwxrwxr-x
PageSettings.php
5.9
KB
-rwxrwxr-x
ServerConfigChecks.php
22.28
KB
-rwxrwxr-x
setup.forms.php
11.26
KB
-rwxrwxr-x
user_preferences.forms.php
9.04
KB
-rwxrwxr-x
Validator.php
21.61
KB
-rwxrwxr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : config_functions.lib.php
<?php /* vim: set expandtab sw=4 ts=4 sts=4: */ /** * Common config manipulation functions * * @package PhpMyAdmin */ use PMA\libraries\Sanitize; /** * Returns sanitized language string, taking into account our special codes * for formatting. Takes variable number of arguments. * Based on Sanitize::sanitize from sanitize.lib.php. * * @param string $lang_key key in $GLOBALS WITHOUT 'strSetup' prefix * * @return string */ function PMA_lang($lang_key) { $message = isset($GLOBALS["strConfig$lang_key"]) ? $GLOBALS["strConfig$lang_key"] : $lang_key; $message = Sanitize::sanitize($message); if (func_num_args() == 1) { return $message; } else { $args = func_get_args(); array_shift($args); return vsprintf($message, $args); } } /** * Returns translated field name/description or comment * * @param string $canonical_path path to handle * @param string $type 'name', 'desc' or 'cmt' * @param mixed $default default value * * @return string */ function PMA_langName($canonical_path, $type = 'name', $default = 'key') { $lang_key = str_replace( array('Servers/1/', '/'), array('Servers/', '_'), $canonical_path ) . '_' . $type; return isset($GLOBALS["strConfig$lang_key"]) ? ($type == 'desc' ? PMA_lang($lang_key) : $GLOBALS["strConfig$lang_key"]) : ($default == 'key' ? $lang_key : $default); }
Close