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 :
QueriesTaxonomyTerms.php
<?php namespace Statamic\Tags\Concerns; use InvalidArgumentException; trait QueriesTaxonomyTerms { protected function queryTaxonomyTerms($query, $modifier, $value) { $values = collect($value); $modifier ??= 'any'; if (in_array($modifier, ['in', 'any'])) { $query->whereTaxonomyIn($values->all()); } elseif (in_array($modifier, ['not_in', 'not'])) { $query->whereTaxonomyNotIn($values->all()); } elseif ($modifier === 'all') { $values->each(fn ($value) => $query->whereTaxonomy($value)); } else { throw new InvalidArgumentException( 'Unknown taxonomy query modifier ['.$modifier.']. Valid values are "any", "not", and "all".' ); } } }
© 2026 UnknownSec