shell bypass 403
UnknownSec Shell
:
/
home
/
forge
/
mpc.brannanatkinson.com
/
vendor
/
statamic
/
cms
/
src
/
Exceptions
/ [
drwxrwxr-x
]
upload
mass deface
mass delete
console
info server
name :
DuplicateFieldException.php
<?php namespace Statamic\Exceptions; use Spatie\Ignition\Contracts\BaseSolution; use Spatie\Ignition\Contracts\ProvidesSolution; use Spatie\Ignition\Contracts\Solution; use Statamic\Statamic; class DuplicateFieldException extends \Exception implements ProvidesSolution { private $handle; private $blueprint; public function __construct($handle, $blueprint) { $this->handle = $handle; $this->blueprint = $blueprint; parent::__construct("Duplicate field [{$handle}] on blueprint [{$blueprint->handle()}]."); } public function getHandle() { return $this->handle; } public function getBlueprint() { return $this->blueprint; } public function getSolution(): Solution { return BaseSolution::create('Two fields with the same handle are in the blueprint.') ->setSolutionDescription('Edit the blueprint to resolve.') ->setDocumentationLinks([ 'View blueprints' => cp_route('blueprints.index'), 'Read the blueprints docs' => Statamic::docsUrl('blueprints'), ]); } }
© 2026 UnknownSec