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 TCP/IP and secure TLS client example that pipes console I/O. // This shows how a plaintext TCP/IP or secure TLS connection is established and // then everything you type on STDIN will be sent and everything the server // sends will be piped to your STDOUT. // // $ php examples/21-netcat-client.php www.google.com:80 // $ php examples/21-netcat-client.php tls://www.google.com:443 use React\EventLoop\Factory; use React\Socket\Connector; use React\Socket\ConnectionInterface; use React\Stream\ReadableResourceStream; use React\Stream\WritableResourceStream; require __DIR__ . '/../vendor/autoload.php'; if (!defined('STDIN')) { echo 'STDIO streams require CLI SAPI' . PHP_EOL; exit(1); } if (DIRECTORY_SEPARATOR === '\\') { fwrite(STDERR, 'Non-blocking console I/O not supported on Microsoft Windows' . PHP_EOL); exit(1); } if (!isset($argv[1])) { fwrite(STDERR, 'Usage error: required argument <host:port>' . PHP_EOL); exit(1); } $loop = Factory::create(); $connector = new Connector($loop); $stdin = new ReadableResourceStream(STDIN, $loop); $stdin->pause(); $stdout = new WritableResourceStream(STDOUT, $loop); $stderr = new WritableResourceStream(STDERR, $loop); $stderr->write('Connecting' . PHP_EOL); $connector->connect($argv[1])->then(function (ConnectionInterface $connection) use ($stdin, $stdout, $stderr) { // pipe everything from STDIN into connection $stdin->resume(); $stdin->pipe($connection); // pipe everything from connection to STDOUT $connection->pipe($stdout); // report errors to STDERR $connection->on('error', function ($error) use ($stderr) { $stderr->write('Stream ERROR: ' . $error . PHP_EOL); }); // report closing and stop reading from input $connection->on('close', function () use ($stderr, $stdin) { $stderr->write('[CLOSED]' . PHP_EOL); $stdin->close(); }); $stderr->write('Connected' . PHP_EOL); }, function ($error) use ($stderr) { $stderr->write('Connection ERROR: ' . $error . PHP_EOL); }); $loop->run();