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 :
Revealer.php
<?php namespace Statamic\Fieldtypes; use Statamic\Fields\Fieldtype; class Revealer extends Fieldtype { protected $categories = ['controls', 'special']; protected $localizable = false; protected $validatable = false; protected $defaultable = false; protected function configFieldItems(): array { return [ [ 'display' => __('Appearance'), 'fields' => [ 'mode' => [ 'display' => __('UI Mode'), 'instructions' => __('statamic::fieldtypes.revealer.config.mode'), 'type' => 'select', 'options' => [ 'button' => __('Button'), 'toggle' => __('Toggle'), ], 'default' => 'button', ], 'input_label' => [ 'display' => __('Input Label'), 'instructions' => __('statamic::fieldtypes.revealer.config.input_label'), 'type' => 'text', 'default' => '', ], ], ], ]; } public function preProcess($data) { return $data ?: false; } public function process($data) { // Don't set as null because it can // masquerade as lost data. // return null; } }
© 2026 UnknownSec