Windows NT KAMIDAKI 10.0 build 19045 (Windows 10) AMD64
Apache/2.4.58 (Win64) OpenSSL/3.1.3 PHP/8.3.9
Server IP : 192.168.3.16 & Your IP : 216.73.216.84
Domains :
Cant Read [ /etc/named.conf ]
User : SISTEMA
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
C: /
xampp /
phpMyAdmin /
Delete
Unzip
Name
Size
Permission
Date
Action
doc
[ DIR ]
drwxrwxrwx
2025-06-09 14:58
examples
[ DIR ]
drwxrwxrwx
2025-06-09 14:58
js
[ DIR ]
drwxrwxrwx
2025-06-09 14:58
libraries
[ DIR ]
drwxrwxrwx
2025-06-09 14:58
locale
[ DIR ]
drwxrwxrwx
2025-06-09 14:58
setup
[ DIR ]
drwxrwxrwx
2025-06-09 14:58
sql
[ DIR ]
drwxrwxrwx
2025-06-09 14:58
templates
[ DIR ]
drwxrwxrwx
2025-06-09 14:58
themes
[ DIR ]
drwxrwxrwx
2025-06-09 14:58
tmp
[ DIR ]
drwxrwxrwx
2025-06-09 14:58
vendor
[ DIR ]
drwxrwxrwx
2025-06-09 14:58
.rtlcssrc.json
20
B
-rw-rw-rw-
2023-02-07 22:26
CONTRIBUTING.md
2.53
KB
-rw-rw-rw-
2023-02-07 22:26
ChangeLog
69.34
KB
-rw-rw-rw-
2023-02-07 22:26
LICENSE
17.67
KB
-rw-rw-rw-
2023-02-07 22:26
README
1.48
KB
-rw-rw-rw-
2023-02-07 22:26
RELEASE-DATE-5.2.1
29
B
-rw-rw-rw-
2023-02-07 22:26
babel.config.json
69
B
-rw-rw-rw-
2023-02-07 22:26
composer.json
5.2
KB
-rw-rw-rw-
2023-02-07 22:26
composer.lock
298.68
KB
-rw-rw-rw-
2023-02-07 22:26
config.inc.php
2.04
KB
-rw-rw-rw-
2024-08-12 16:21
config.sample.inc.php
4.7
KB
-rw-rw-rw-
2023-02-07 22:26
favicon.ico
21.96
KB
-rw-rw-rw-
2023-02-07 22:26
index.php
1.05
KB
-rw-rw-rw-
2023-02-07 22:26
package.json
2.72
KB
-rw-rw-rw-
2023-02-07 22:26
robots.txt
26
B
-rw-rw-rw-
2023-02-07 22:26
show_config_errors.php
1.13
KB
-rw-rw-rw-
2023-02-07 22:26
url.php
965
B
-rw-rw-rw-
2023-02-07 22:26
yarn.lock
247.17
KB
-rw-rw-rw-
2023-02-07 22:26
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();