shell bypass 403
UnknownSec Shell
:
/
home
/
forge
/
mpc.brannanatkinson.com
/
vendor
/
statamic
/
cms
/
src
/
Fields
/ [
drwxrwxr-x
]
upload
mass deface
mass delete
console
info server
name :
Section.php
<?php namespace Statamic\Fields; use Statamic\Support\Arr; class Section { protected $contents; public function __construct($contents) { $this->contents = $contents; } public function display(): ?string { return $this->contents['display'] ?? null; } public function instructions(): ?string { return $this->contents['instructions'] ?? null; } public function contents(): array { return $this->contents; } public function fields(): Fields { return new Fields(Arr::get($this->contents, 'fields', [])); } public function toPublishArray(): array { return Arr::removeNullValues([ 'display' => $this->display(), 'instructions' => $this->instructions(), ]) + [ 'fields' => $this->fields()->toPublishArray(), ]; } }
© 2026 UnknownSec