shell bypass 403
UnknownSec Shell
:
/
home
/
forge
/
lolasweb.brannanatkinson.com
/
vendor
/
ajthinking
/
archetype
/
src
/
Traits
/ [
drwxrwxr-x
]
upload
mass deface
mass delete
console
info server
name :
HasDirectives.php
<?php namespace Archetype\Traits; use Archetype\Support\Types; trait HasDirectives { public function add($value = Types::NO_VALUE) { $this->directive('add', true); if ($value !== Types::NO_VALUE) { $this->directive('addValue', $value); } return $this; } public function remove() { return $this->directive('remove', true); } public function clear() { return $this->directive('clear', true); } public function empty() { return $this->directive('empty', true); } public function addMissingTags($trueOrFalse = true) { return $this->directive('addMissingTags', $trueOrFalse); } public function full() { return $this->directive('full', true); } public function public() { return $this->directive('flag', 'public'); } public function protected() { return $this->directive('flag', 'protected'); } public function private() { return $this->directive('flag', 'private'); } public function static() { return $this->directive('flag', 'static'); } public function assumeType($value) { return $this->directive('assumeType', $value); } }
© 2026 UnknownSec