shell bypass 403
UnknownSec Shell
:
/
home
/
forge
/
lolas.brannanatkinson.com
/
vendor
/
rebing
/
graphql-laravel
/
src
/
Console
/
stubs
/ [
drwxrwxr-x
]
upload
mass deface
mass delete
console
info server
name :
scalar.stub
<?php declare(strict_types=1); namespace DummyNamespace; use Exception; use GraphQL\Error\Error; use GraphQL\Language\AST\Node; use GraphQL\Type\Definition\Type; use GraphQL\Type\Definition\ScalarType; use Rebing\GraphQL\Support\Contracts\TypeConvertible; class DummyClass extends ScalarType implements TypeConvertible { /** * @var string */ public $name = 'DummyClass'; /** * @var string */ public $description = ''; /** * Serializes an internal value to include in a response. * * @param mixed $value * * @return mixed * * @throws Error */ public function serialize($value) { return $value; } /** * Parses an externally provided value (query variable) to use as an input. * * In the case of an invalid value this method must throw an Exception * * @param mixed $value * * @return mixed * * @throws Error */ public function parseValue($value) { return $value; } /** * Parses an externally provided literal value (hardcoded in GraphQL query) to use as an input. * * In the case of an invalid node or value this method must throw an Exception * * @param Node $valueNode * @param mixed[]|null $variables * * @return mixed * * @throws Exception */ public function parseLiteral($valueNode, ?array $variables = null) { return null; } public function toType(): Type { return new static(); } }
© 2026 UnknownSec