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.203.21
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
unp /
vendor /
react /
stream /
examples /
Delete
Unzip
Name
Size
Permission
Date
Action
01-http.php
1.1
KB
-rw-r--r--
2018-07-11 09:00
02-https.php
1.1
KB
-rw-r--r--
2018-07-11 09:00
11-cat.php
793
B
-rw-r--r--
2018-07-11 09:00
91-benchmark-throughput.php
2.34
KB
-rw-r--r--
2018-07-11 09:00
Save
Rename
<?php // Simple example piping everything from STDIN to STDOUT. // This allows you to output everything you type on your keyboard or to redirect // the pipes to show contents of files and other streams. // // $ php examples/11-cat.php // $ php examples/11-cat.php < README.md // $ echo hello | php examples/11-cat.php use React\EventLoop\Factory; use React\Stream\ReadableResourceStream; use React\Stream\WritableResourceStream; require __DIR__ . '/../vendor/autoload.php'; if (DIRECTORY_SEPARATOR === '\\') { fwrite(STDERR, 'Non-blocking console I/O not supported on Microsoft Windows' . PHP_EOL); exit(1); } $loop = Factory::create(); $stdout = new WritableResourceStream(STDOUT, $loop); $stdin = new ReadableResourceStream(STDIN, $loop); $stdin->pipe($stdout); $loop->run();