shell bypass 403
UnknownSec Shell
:
/
home
/
forge
/
lolasweb.brannanatkinson.com
/
vendor
/
statamic
/
cms
/
src
/
GraphQL
/
Types
/ [
drwxrwxr-x
]
upload
mass deface
mass delete
console
info server
name :
SectionType.php
<?php namespace Statamic\GraphQL\Types; use Statamic\Facades\GraphQL; class SectionType extends \Rebing\GraphQL\Support\Type { const NAME = 'Section'; protected $attributes = [ 'name' => self::NAME, ]; public function fields(): array { return [ 'display' => [ 'type' => GraphQL::string(), 'resolve' => function ($section) { return $section->display(); }, ], 'instructions' => [ 'type' => GraphQL::string(), 'resolve' => function ($section) { return $section->instructions(); }, ], 'fields' => [ 'type' => GraphQL::listOf(GraphQL::type(FieldType::NAME)), 'resolve' => function ($section) { return $section->fields()->all(); }, ], ]; } }
© 2026 UnknownSec