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 :
Textarea.php
<?php namespace Statamic\Fieldtypes; use Statamic\Fields\Fieldtype; use Statamic\Query\Scopes\Filters\Fields\Textarea as TextareaFilter; class Textarea extends Fieldtype { protected $categories = ['text']; protected $selectableInForms = true; protected function configFieldItems(): array { return [ [ 'display' => __('Appearance & Behavior'), 'fields' => [ 'placeholder' => [ 'display' => __('Placeholder'), 'instructions' => __('statamic::fieldtypes.text.config.placeholder'), 'type' => 'text', ], 'character_limit' => [ 'display' => __('Character Limit'), 'instructions' => __('statamic::fieldtypes.text.config.character_limit'), 'type' => 'integer', ], 'default' => [ 'display' => __('Default Value'), 'instructions' => __('statamic::messages.fields_default_instructions'), 'type' => 'textarea', ], ], ], [ 'display' => __('Antlers'), 'fields' => [ 'antlers' => [ 'display' => __('Allow Antlers'), 'instructions' => __('statamic::fieldtypes.any.config.antlers'), 'type' => 'toggle', ], ], ], ]; } public function filter() { return new TextareaFilter($this); } }
© 2026 UnknownSec