shell bypass 403
UnknownSec Shell
:
/
home
/
forge
/
lolasweb.brannanatkinson.com
/
vendor
/
statamic
/
cms
/
src
/
Console
/
Processes
/ [
drwxrwxr-x
]
upload
mass deface
mass delete
console
info server
name :
TtyDetector.php
<?php namespace Statamic\Console\Processes; use RuntimeException; use Symfony\Component\Process\Process; class TtyDetector { /** * Try to `setTty()` using symfony/process, since that method ultimately determines whether or not we can TTY. * * @return bool */ public function isTtySupported() { try { (new Process([]))->setTty(true); } catch (RuntimeException $exception) { return false; } return true; } }
© 2026 UnknownSec