shell bypass 403
UnknownSec Shell
:
/
home
/
forge
/
mpc.brannanatkinson.com
/
vendor
/
statamic
/
cms
/
src
/
Query
/
Scopes
/ [
drwxrwxr-x
]
upload
mass deface
mass delete
console
info server
name :
Filter.php
<?php namespace Statamic\Query\Scopes; use Illuminate\Contracts\Support\Arrayable; use Statamic\Extend\HasFields; use Statamic\Extend\HasTitle; abstract class Filter extends Scope implements Arrayable { use HasFields, HasTitle; protected $context = []; protected $pinned = false; public function visibleTo($key) { return true; } public function context($context) { $this->context = $context; return $this; } public function extra() { return []; } protected function fieldItems() { return [ 'value' => [ 'type' => 'text', ], ]; } public function autoApply() { return []; } public function badge($values) { $valuesSummary = collect($values) ->filter() ->implode(', '); return strtolower($this->title()).': '.$valuesSummary; } public function toArray() { return [ 'handle' => $this->handle(), 'title' => $this->title(), 'extra' => $this->extra(), 'pinned' => $this->pinned(), 'auto_apply' => $this->autoApply(), 'fields' => $this->fields()->toPublishArray(), 'meta' => $this->fields()->meta(), 'values' => $this->fields()->all()->map->defaultValue(), ]; } public function __call($method, $args) { return $this->{$method}; } }
© 2026 UnknownSec