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.143.215.114
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 use Clue\React\Buzz\Browser; use Clue\React\HttpProxy\ProxyConnector as HttpConnectClient; use Psr\Http\Message\ResponseInterface; use React\EventLoop\Factory as LoopFactory; use React\Socket\Connector; require __DIR__ . '/../vendor/autoload.php'; $loop = LoopFactory::create(); // create a new HTTP CONNECT proxy client which connects to a HTTP CONNECT proxy server listening on localhost:8080 // not already running a HTTP CONNECT proxy server? Try LeProxy.org! $proxy = new HttpConnectClient('127.0.0.1:8080', new Connector($loop)); // create a Browser object that uses the HTTP CONNECT proxy client for connections $connector = new Connector($loop, array( 'tcp' => $proxy, 'dns' => false )); $browser = new Browser($loop, $connector); // demo fetching HTTP headers (or bail out otherwise) $browser->get('https://www.google.com/')->then(function (ResponseInterface $response) { echo RingCentral\Psr7\str($response); }, 'printf'); $loop->run();