shell bypass 403
UnknownSec Shell
:
/
home
/
forge
/
lolasweb.brannanatkinson.com
/
vendor
/
rebing
/
graphql-laravel
/
src
/
Support
/ [
drwxrwxr-x
]
upload
mass deface
mass delete
console
info server
name :
UnionType.php
<?php declare(strict_types = 1); namespace Rebing\GraphQL\Support; use GraphQL\Type\Definition\Type as GraphqlType; use GraphQL\Type\Definition\UnionType as BaseUnionType; abstract class UnionType extends Type { /** * @return GraphqlType[] */ abstract public function types(): array; /** * Get the attributes from the container. */ public function getAttributes(): array { $attributes = parent::getAttributes(); $types = $this->types(); if ($types) { $attributes['types'] = $types; } if (method_exists($this, 'resolveType')) { $attributes['resolveType'] = [$this, 'resolveType']; } return $attributes; } public function toType(): GraphqlType { return new BaseUnionType($this->toArray()); } }
© 2026 UnknownSec