shell bypass 403
UnknownSec Shell
:
/
home
/
forge
/
lolasweb.brannanatkinson.com
/
vendor
/
statamic
/
cms
/
src
/
Tags
/ [
drwxrwxr-x
]
upload
mass deface
mass delete
console
info server
name :
Loader.php
<?php namespace Statamic\Tags; use Statamic\View\State\StateManager; class Loader { public function load($name, $properties) { if (! ($tags = app('statamic.tags'))->has($name)) { throw new TagNotFoundException("Could not find files to load the `{$name}` tag."); } return $this->init($tags->get($name), $properties); } private function init($class, $properties) { $tag = is_string($class) ? app($class) : $class; StateManager::track($class); return tap($tag, function ($tag) use ($properties) { $tag->setProperties($properties); }); } }
© 2026 UnknownSec