Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 18.116.42.143
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
myadmin /
libraries /
classes /
Setup /
Delete
Unzip
Name
Size
Permission
Date
Action
ConfigGenerator.php
5.29
KB
-rw-r--r--
2021-02-05 18:27
FormProcessing.php
2.16
KB
-rw-r--r--
2021-02-05 18:27
Index.php
5.71
KB
-rw-r--r--
2021-02-05 18:27
Save
Rename
<?php /* vim: set expandtab sw=4 ts=4 sts=4: */ /** * Formset processing library * * @package PhpMyAdmin-Setup */ declare(strict_types=1); namespace PhpMyAdmin\Setup; use PhpMyAdmin\Config\FormDisplay; use PhpMyAdmin\Core; use PhpMyAdmin\Response; use PhpMyAdmin\Template; use PhpMyAdmin\Url; /** * PhpMyAdmin\Setup\FormProcessing class * * @package PhpMyAdmin-Setup */ class FormProcessing { /** * Processes forms registered in $form_display, handles error correction * * @param FormDisplay $form_display Form to display * * @return void */ public static function process(FormDisplay $form_display) { if (isset($_GET['mode']) && $_GET['mode'] == 'revert') { // revert erroneous fields to their default values $form_display->fixErrors(); $response = Response::getInstance(); $response->disable(); $response->generateHeader303('index.php' . Url::getCommonRaw()); } if (! $form_display->process(false)) { // handle form view and failed POST echo $form_display->getDisplay(true, true); return; } // check for form errors if (! $form_display->hasErrors()) { $response = Response::getInstance(); $response->disable(); $response->generateHeader303('index.php' . Url::getCommonRaw()); return; } // form has errors, show warning $page = isset($_GET['page']) ? $_GET['page'] : ''; $formset = isset($_GET['formset']) ? $_GET['formset'] : ''; $formId = Core::isValid($_GET['id'], 'numeric') ? $_GET['id'] : ''; if ($formId === null && $page == 'servers') { // we've just added a new server, get its id $formId = $form_display->getConfigFile()->getServerCount(); } $urlParams = [ 'page' => $page, 'formset' => $formset, 'id' => $formId, ]; $template = new Template(); echo $template->render('setup/error', [ 'url_params' => $urlParams, 'errors' => $form_display->displayErrors(), ]); } }