webshell
Ghost Exploiter Team Official
Mass Deface
Directory >>
/
home
/
whitjouh
/
public_html
/
core
/
vendor
/
nikic
/
php-parser
/
lib
/
PhpParser
/
Node
/
Mass Deface Auto Detect Domain
/*Ubah Ke document_root untuk mass deface*/
File / Folder
Size
Action
.
-
+New File
Expr
--
ren
Name
--
ren
Scalar
--
ren
Stmt
--
ren
Arg.php
1.269KB
edt
ren
ArrayItem.php
1.184KB
edt
ren
Attribute.php
0.801KB
edt
ren
AttributeGroup.php
0.632KB
edt
ren
ClosureUse.php
0.95KB
edt
ren
ComplexType.php
0.315KB
edt
ren
Const_.php
0.948KB
edt
ren
DeclareItem.php
0.969KB
edt
ren
Expr.php
0.13KB
edt
ren
FunctionLike.php
0.714KB
edt
ren
Identifier.php
1.773KB
edt
ren
InterpolatedStringPart.php
0.83KB
edt
ren
IntersectionType.php
0.649KB
edt
ren
MatchArm.php
0.662KB
edt
ren
Name.php
8.177KB
edt
ren
NullableType.php
0.663KB
edt
ren
Param.php
2.548KB
edt
ren
PropertyItem.php
1.047KB
edt
ren
Scalar.php
0.096KB
edt
ren
StaticVar.php
0.976KB
edt
ren
Stmt.php
0.13KB
edt
ren
UnionType.php
0.661KB
edt
ren
UseItem.php
1.638KB
edt
ren
VarLikeIdentifier.php
0.49KB
edt
ren
VariadicPlaceholder.php
0.638KB
edt
ren
<?php declare(strict_types=1); namespace PhpParser\Node; use PhpParser\Node; use PhpParser\NodeAbstract; use PhpParser\Node\Stmt\Use_; class UseItem extends NodeAbstract { /** * @var Use_::TYPE_* One of the Stmt\Use_::TYPE_* constants. Will only differ from TYPE_UNKNOWN for mixed group uses */ public int $type; /** @var Node\Name Namespace, class, function or constant to alias */ public Name $name; /** @var Identifier|null Alias */ public ?Identifier $alias; /** * Constructs an alias (use) item node. * * @param Node\Name $name Namespace/Class to alias * @param null|string|Identifier $alias Alias * @param Use_::TYPE_* $type Type of the use element (for mixed group use only) * @param array<string, mixed> $attributes Additional attributes */ public function __construct(Node\Name $name, $alias = null, int $type = Use_::TYPE_UNKNOWN, array $attributes = []) { $this->attributes = $attributes; $this->type = $type; $this->name = $name; $this->alias = \is_string($alias) ? new Identifier($alias) : $alias; } public function getSubNodeNames(): array { return ['type', 'name', 'alias']; } /** * Get alias. If not explicitly given this is the last component of the used name. */ public function getAlias(): Identifier { if (null !== $this->alias) { return $this->alias; } return new Identifier($this->name->getLast()); } public function getType(): string { return 'UseItem'; } } // @deprecated compatibility alias class_alias(UseItem::class, Stmt\UseUse::class);