shell bypass 403
UnknownSec Shell
:
/
home
/
forge
/
lolasweb.brannanatkinson.com
/
vendor
/
statamic
/
cms
/
src
/
GraphQL
/
Queries
/ [
drwxrwxr-x
]
upload
mass deface
mass delete
console
info server
name :
Query.php
<?php namespace Statamic\GraphQL\Queries; use Closure; use Facades\Statamic\GraphQL\TypeRegistrar; use GraphQL\Type\Definition\ResolveInfo; use Rebing\GraphQL\Support\Query as BaseQuery; abstract class Query extends BaseQuery { protected static $auth; public function __construct() { TypeRegistrar::register(); } public static function auth($closure) { static::$auth = $closure; } public function authorize($root, array $args, $ctx, ?ResolveInfo $resolveInfo = null, ?Closure $getSelectFields = null): bool { if (static::$auth) { return call_user_func_array(static::$auth, [$root, $args, $ctx, $resolveInfo, $getSelectFields]); } return true; } }
© 2026 UnknownSec