Linux polon 4.19.0-27-amd64 #1 SMP Debian 4.19.316-1 (2024-06-25) x86_64
Apache/2.4.59 (Debian)
: 10.2.73.233 | : 216.73.216.105
Cant Read [ /etc/named.conf ]
5.6.40-64+0~20230107.71+debian10~1.gbp673146
ifk
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
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 : index.php
<?php /* vim: set expandtab sw=4 ts=4 sts=4: */ /** * Front controller for setup script * * @package PhpMyAdmin-Setup * @license https://www.gnu.org/licenses/gpl.html GNU GPL 2.0 */ /** * Core libraries. */ require './lib/common.inc.php'; if (file_exists(CONFIG_FILE)) { PMA_fatalError(__('Configuration already exists, setup is disabled!')); } $page = PMA_isValid($_GET['page'], 'scalar') ? $_GET['page'] : null; $page = preg_replace('/[^a-z]/', '', $page); if ($page === '') { $page = 'index'; } if (!file_exists("./setup/frames/$page.inc.php")) { // it will happen only when entering URL by hand, we don't care for these cases PMA_fatalError(__('Wrong GET file attribute value')); } // Handle done action info $action_done = PMA_isValid($_GET['action_done'], 'scalar') ? $_GET['action_done'] : null; $action_done = preg_replace('/[^a-z_]/', '', $action_done); PMA_noCacheHeader(); ?> <!DOCTYPE HTML> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta charset="utf-8" /> <title>phpMyAdmin setup</title> <link href="../favicon.ico" rel="icon" type="image/x-icon" /> <link href="../favicon.ico" rel="shortcut icon" type="image/x-icon" /> <link href="styles.css" rel="stylesheet" type="text/css" /> <script type="text/javascript" src="../js/jquery/jquery-2.1.4.min.js"></script> <script type="text/javascript" src="../js/jquery/jquery-ui-1.11.4.min.js"> </script> <script type="text/javascript" src="ajax.js"></script> <script type="text/javascript" src="../js/config.js"></script> <script type="text/javascript" src="scripts.js"></script> <script type="text/javascript" src="../js/messages.php"></script> </head> <body> <h1><span class="blue">php</span><span class="orange">MyAdmin</span> setup</h1> <div id="menu"> <?php require './setup/frames/menu.inc.php'; ?> </div> <div id="page"> <?php require "./setup/frames/$page.inc.php"; ?> </div> </body> </html>
Close