Linux vmi284606.contaboserver.net 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64
Apache/2.4.57 (Ubuntu)
: 167.86.127.34 | : 216.73.216.67
Cant Read [ /etc/named.conf ]
7.2.24-0ubuntu0.18.04.17
root
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
share /
phpmyadmin /
setup /
[ HOME SHELL ]
Name
Size
Permission
Action
frames
[ DIR ]
drwxr-xr-x
lib
[ DIR ]
drwxr-xr-x
ajax.js
248
B
-rw-r--r--
config.php
1.28
KB
-rw-r--r--
index.php
1.85
KB
-rw-r--r--
scripts.js
5.68
KB
-rw-r--r--
styles.css
10.29
KB
-rw-r--r--
validate.php
847
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : validate.php
<?php /* vim: set expandtab sw=4 ts=4 sts=4: */ /** * Validation callback. * * @package PhpMyAdmin-Setup */ /** * Core libraries. */ require './lib/common.inc.php'; $validators = array(); require './libraries/config/Validator.php'; PMA_headerJSON(); $ids = PMA_isValid($_POST['id'], 'scalar') ? $_POST['id'] : null; $vids = explode(',', $ids); $vals = PMA_isValid($_POST['values'], 'scalar') ? $_POST['values'] : null; $values = json_decode($vals); if (!($values instanceof stdClass)) { PMA_fatalError(__('Wrong data')); } $values = (array)$values; $result = PMA\libraries\config\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) : '';
Close