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.188.39.197
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
unp /
vendor /
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 // concurrently request a number of URIs. // return immediately once the first is completed, cancel all others. use Clue\React\Buzz\Browser; use Psr\Http\Message\ResponseInterface; require __DIR__ . '/../vendor/autoload.php'; $loop = React\EventLoop\Factory::create(); $client = new Browser($loop); $promises = array( $client->head('http://www.github.com/clue/http-react'), $client->get('https://httpbin.org/'), $client->get('https://google.com'), $client->get('http://www.lueck.tv/psocksd'), $client->get('http://www.httpbin.org/absolute-redirect/5') ); React\Promise\any($promises)->then(function (ResponseInterface $response) use ($promises) { // first response arrived => cancel all other pending requests foreach ($promises as $promise) { $promise->cancel(); } var_dump($response->getHeaders()); echo PHP_EOL . $response->getBody(); }); $loop->run();