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.116.170.100
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 Clue\React\Socks\Client as SocksClient; 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 SOCKS proxy client which connects to a SOCKS proxy server listening on localhost:1080 // not already running a SOCKS proxy server? Try LeProxy.org or this: `ssh -D 1080 localhost` $proxy = new SocksClient('127.0.0.1:1080', new Connector($loop)); // create a Browser object that uses the SOCKS 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();