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 :
Template.php
<?php namespace Statamic\Fieldtypes; use Statamic\Fields\Fieldtype; use Statamic\Query\Scopes\Filters\Fields\Template as TemplateFilter; class Template extends Fieldtype { protected $categories = ['special']; protected function configFieldItems(): array { return [ [ 'display' => __('Behavior'), 'fields' => [ 'hide_partials' => [ 'display' => __('Hide Partials'), 'instructions' => __('statamic::fieldtypes.template.config.hide_partials'), 'type' => 'toggle', 'default' => true, ], 'blueprint' => [ 'display' => __('Blueprint'), 'instructions' => __('statamic::fieldtypes.template.config.blueprint'), 'type' => 'toggle', 'default' => false, ], 'folder' => [ 'display' => __('Restrict to Folder'), 'instructions' => __('statamic::fieldtypes.template.config.folder'), 'type' => 'template_folder', 'max_items' => 1, ], ], ], ]; } public function filter() { return new TemplateFilter($this); } }
© 2026 UnknownSec