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 : 3.140.242.43
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\ReadableStreamInterface; 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); echo 'Requesting ' . $url . '…' . PHP_EOL; $client->withOptions(array('streaming' => true))->get($url)->then(function (ResponseInterface $response) use ($loop) { echo 'Headers received' . PHP_EOL; echo Psr7\str($response); $stream = $response->getBody(); if (!$stream instanceof ReadableStreamInterface) { throw new UnexpectedValueException(); } // count number of bytes received $bytes = 0; $stream->on('data', function ($chunk) use (&$bytes) { $bytes += strlen($chunk); }); // report progress every 0.1s $timer = $loop->addPeriodicTimer(0.1, function () use (&$bytes) { echo "\rDownloaded " . $bytes . " bytes…"; }); // report results once the stream closes $time = microtime(true); $stream->on('close', function() use (&$bytes, $timer, $loop, $time) { $loop->cancelTimer($timer); $time = microtime(true) - $time; echo "\r" . 'Downloaded ' . $bytes . ' bytes in ' . round($time, 3) . 's => ' . round($bytes / $time / 1024 / 1024, 1) . ' MiB/s' . PHP_EOL; }); }, 'printf'); $loop->run();