shell bypass 403
UnknownSec Shell
:
/
home
/
forge
/
mpc.brannanatkinson.com
/
vendor
/
statamic
/
cms
/
src
/
Tags
/
Concerns
/ [
drwxrwxr-x
]
upload
mass deface
mass delete
console
info server
name :
GetsPipedArrayValues.php
<?php namespace Statamic\Tags\Concerns; trait GetsPipedArrayValues { /** * Explode piped array values from tag params into php array. * * @param string $string * @return array */ protected function getPipedValues($string) { return collect(explode('|', $string)) ->map(function ($value) { switch ($value) { case 'true': return true; case 'false': return false; default: return $value; } }) ->all(); } }
© 2026 UnknownSec