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.189.3.134
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
unp /
public /
myadmin /
setup /
Delete
Unzip
Name
Size
Permission
Date
Action
lib
[ DIR ]
drwxr-xr-x
2020-10-15 12:07
config.php
1.41
KB
-rw-r--r--
2021-02-05 18:27
index.php
2.2
KB
-rw-r--r--
2021-02-05 18:27
styles.css
10.32
KB
-rw-r--r--
2021-02-05 18:27
validate.php
981
B
-rw-r--r--
2021-02-05 18:27
Save
Rename
<?php /* vim: set expandtab sw=4 ts=4 sts=4: */ /** * Validation callback. * * @package PhpMyAdmin-Setup */ declare(strict_types=1); use PhpMyAdmin\Config\Validator; use PhpMyAdmin\Core; if (! defined('ROOT_PATH')) { define('ROOT_PATH', dirname(__DIR__) . DIRECTORY_SEPARATOR); } /** * Core libraries. */ require ROOT_PATH . 'setup/lib/common.inc.php'; $validators = []; Core::headerJSON(); $ids = Core::isValid($_POST['id'], 'scalar') ? $_POST['id'] : null; $vids = explode(',', $ids); $vals = Core::isValid($_POST['values'], 'scalar') ? $_POST['values'] : null; $values = json_decode($vals); if (! ($values instanceof stdClass)) { Core::fatalError(__('Wrong data')); } $values = (array) $values; $result = Validator::validate($GLOBALS['ConfigFile'], $vids, $values, true); if ($result === false) { $result = sprintf( __('Wrong data or no validation for %s'), implode(',', $vids) ); } echo $result !== true ? json_encode($result) : '';