Linux vps-61133.fhnet.fr 4.9.0-19-amd64 #1 SMP Debian 4.9.320-2 (2022-06-30) x86_64
Apache/2.4.25 (Debian)
Server IP : 93.113.207.21 & Your IP : 216.73.216.122
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
doc /
phpmyadmin /
examples /
Delete
Unzip
Name
Size
Permission
Date
Action
config.manyhosts.inc.php
1.57
KB
-rw-r--r--
2020-10-23 10:50
config.sample.inc.php.gz
1.66
KB
-rw-r--r--
2017-01-23 20:20
create_tables.sql
10.68
KB
-rw-r--r--
2017-01-23 20:20
openid.php.gz
1.82
KB
-rw-r--r--
2017-01-23 20:20
signon-script.php
801
B
-rw-r--r--
2017-01-23 20:20
signon.php
2.38
KB
-rw-r--r--
2017-01-23 20:20
Save
Rename
<?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; }