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 /
phpmyadmin /
libraries /
classes /
Database /
Delete
Unzip
Name
Size
Permission
Date
Action
Designer
[ DIR ]
drwxr-xr-x
2025-06-07 11:58
CentralColumns.php
35.74
KB
-rw-r--r--
2023-02-07 21:35
DatabaseList.php
886
B
-rw-r--r--
2023-02-07 21:35
Designer.php
15.19
KB
-rw-r--r--
2023-02-07 21:35
Events.php
20.61
KB
-rw-r--r--
2023-02-07 21:35
MultiTableQuery.php
3.37
KB
-rw-r--r--
2023-02-07 21:35
Qbe.php
58.34
KB
-rw-r--r--
2023-02-07 21:35
Routines.php
57.11
KB
-rw-r--r--
2023-02-07 21:35
Search.php
9.35
KB
-rw-r--r--
2023-02-07 21:35
Triggers.php
17.95
KB
-rw-r--r--
2023-02-07 21:35
Save
Rename
<?php declare(strict_types=1); namespace PhpMyAdmin\Database; use PhpMyAdmin\ListDatabase; class DatabaseList { /** * Holds database list * * @var ListDatabase */ protected $databases = null; /** * magic access to protected/inaccessible members/properties * * @see https://www.php.net/language.oop5.overloading * * @param string $param parameter name * * @return mixed */ public function __get($param) { switch ($param) { case 'databases': return $this->getDatabaseList(); } return null; } /** * Accessor to PMA::$databases */ public function getDatabaseList(): ListDatabase { if ($this->databases === null) { $this->databases = new ListDatabase(); } return $this->databases; } }