Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 3.141.14.210
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
myadmin /
libraries /
classes /
Database /
Delete
Unzip
Name
Size
Permission
Date
Action
Designer
[ DIR ]
drwxr-xr-x
2020-10-15 12:07
DatabaseList.php
1.07
KB
-rw-r--r--
2021-02-05 18:26
Designer.php
14.78
KB
-rw-r--r--
2021-02-05 18:26
MultiTableQuery.php
3.43
KB
-rw-r--r--
2021-02-05 18:26
Qbe.php
67.44
KB
-rw-r--r--
2021-02-05 18:26
Search.php
10.28
KB
-rw-r--r--
2021-02-05 18:26
Save
Rename
<?php /* vim: set expandtab sw=4 ts=4 sts=4: */ /** * holds the PhpMyAdmin\Database\DatabaseList class * * @package PhpMyAdmin * */ declare(strict_types=1); namespace PhpMyAdmin\Database; use PhpMyAdmin\ListDatabase; /** * holds the DatabaseList class * * @package PhpMyAdmin */ class DatabaseList { /** * Holds database list * * @var ListDatabase */ protected $databases = null; /** * magic access to protected/inaccessible members/properties * * @param string $param parameter name * * @return mixed * @see https://www.php.net/language.oop5.overloading */ public function __get($param) { switch ($param) { case 'databases': return $this->getDatabaseList(); } return null; } /** * Accessor to PMA::$databases * * @return ListDatabase */ public function getDatabaseList() { if (null === $this->databases) { $this->databases = new ListDatabase(); } return $this->databases; } }