Linux server.kiran-academy.com 3.10.0-1160.108.1.el7.x86_64 #1 SMP Thu Jan 25 16:17:31 UTC 2024 x86_64
Apache/2.4.57 (Unix) OpenSSL/1.0.2k-fips
: 194.233.91.196 | : 216.73.216.216
Cant Read [ /etc/named.conf ]
7.4.32
finalho
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
/
usr /
local /
cwpsrv /
var /
services /
pma /
[ HOME SHELL ]
Name
Size
Permission
Action
doc
[ DIR ]
drwxr-xr-x
examples
[ DIR ]
drwxr-xr-x
js
[ DIR ]
drwxr-xr-x
libraries
[ DIR ]
drwxr-xr-x
locale
[ DIR ]
drwxr-xr-x
sql
[ DIR ]
drwxr-xr-x
templates
[ DIR ]
drwxr-xr-x
themes
[ DIR ]
drwxr-xr-x
tmp
[ DIR ]
drwxr-x---
vendor
[ DIR ]
drwxr-xr-x
CONTRIBUTING.md
2.53
KB
-rw-r--r--
ChangeLog
48.26
KB
-rw-r--r--
LICENSE
17.67
KB
-rw-r--r--
README
1.48
KB
-rw-r--r--
RELEASE-DATE-5.1.1
29
B
-rw-r--r--
babel.config.json
41
B
-rw-r--r--
composer.json
3.97
KB
-rw-r--r--
composer.lock
199.34
KB
-rw-r--r--
config.inc.php
4.4
KB
-rw-r--r--
favicon.ico
21.96
KB
-rw-r--r--
index.php
413
B
-rw-r--r--
package.json
2.2
KB
-rw-r--r--
print.css
1.01
KB
-rw-r--r--
robots.txt
26
B
-rw-r--r--
show_config_errors.php
1.32
KB
-rw-r--r--
ur1.php
1.81
KB
-rw-r--r--
url.php
1.58
KB
-rw-r--r--
yarn.lock
299.39
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : url.php
<?php /** * URL redirector to avoid leaking Referer with some sensitive information. */ declare(strict_types=1); use PhpMyAdmin\Core; use PhpMyAdmin\DatabaseInterface; use PhpMyAdmin\Response; use PhpMyAdmin\Sanitize; if (! defined('ROOT_PATH')) { // phpcs:disable PSR1.Files.SideEffects define('ROOT_PATH', __DIR__ . DIRECTORY_SEPARATOR); // phpcs:enable } global $containerBuilder, $dbi; // phpcs:disable PSR1.Files.SideEffects define('PMA_MINIMUM_COMMON', true); // phpcs:enable require_once ROOT_PATH . 'libraries/common.inc.php'; // Load database service because services.php is not available here $dbi = DatabaseInterface::load(); $containerBuilder->set(DatabaseInterface::class, $dbi); // Only output the http headers $response = Response::getInstance(); $response->getHeader()->sendHttpHeaders(); $response->disable(); if (! Core::isValid($_GET['url']) || ! preg_match('/^https:\/\/[^\n\r]*$/', $_GET['url']) || ! Core::isAllowedDomain($_GET['url']) ) { Core::sendHeaderLocation('./'); } else { // JavaScript redirection is necessary. Because if header() is used // then web browser sometimes does not change the HTTP_REFERER // field and so with old URL as Referer, token also goes to // external site. $template = $containerBuilder->get('template'); echo $template->render('javascript/redirect', [ 'url' => Sanitize::escapeJsString($_GET['url']), ]); // Display redirecting msg on screen. // Do not display the value of $_GET['url'] to avoid showing injected content echo __('Taking you to the target site.'); } die;
Close