webshell
Ghost Exploiter Team Official
Mass Deface
Directory >>
/
home
/
whitjouh
/
public_html
/
core
/
vendor
/
nikic
/
php-parser
/
lib
/
PhpParser
/
Node
/
Stmt
/
Mass Deface Auto Detect Domain
/*Ubah Ke document_root untuk mass deface*/
File / Folder
Size
Action
.
-
+New File
TraitUseAdaptation
--
ren
Block.php
0.631KB
edt
ren
Break_.php
0.682KB
edt
ren
Case_.php
0.849KB
edt
ren
Catch_.php
1.088KB
edt
ren
ClassConst.php
2.082KB
edt
ren
ClassLike.php
2.957KB
edt
ren
ClassMethod.php
4.605KB
edt
ren
Class_.php
3.14KB
edt
ren
Const_.php
0.68KB
edt
ren
Continue_.php
0.696KB
edt
ren
DeclareDeclare.php
0.071KB
edt
ren
Declare_.php
0.891KB
edt
ren
Do_.php
0.8KB
edt
ren
Echo_.php
0.644KB
edt
ren
ElseIf_.php
0.807KB
edt
ren
Else_.php
0.646KB
edt
ren
EnumCase.php
1.139KB
edt
ren
Enum_.php
1.541KB
edt
ren
Expression.php
0.709KB
edt
ren
Finally_.php
0.654KB
edt
ren
For_.php
1.401KB
edt
ren
Foreach_.php
1.67KB
edt
ren
Function_.php
2.609KB
edt
ren
Global_.php
0.662KB
edt
ren
Goto_.php
0.739KB
edt
ren
GroupUse.php
1.036KB
edt
ren
HaltCompiler.php
0.75KB
edt
ren
If_.php
1.359KB
edt
ren
InlineHTML.php
0.644KB
edt
ren
Interface_.php
1.294KB
edt
ren
Label.php
0.702KB
edt
ren
Namespace_.php
0.935KB
edt
ren
Nop.php
0.288KB
edt
ren
Property.php
2.271KB
edt
ren
PropertyProperty.php
0.072KB
edt
ren
Return_.php
0.663KB
edt
ren
StaticVar.php
0.069KB
edt
ren
Static_.php
0.704KB
edt
ren
Switch_.php
0.789KB
edt
ren
TraitUse.php
0.868KB
edt
ren
TraitUseAdaptation.php
0.286KB
edt
ren
Trait_.php
1.046KB
edt
ren
TryCatch.php
1.021KB
edt
ren
Unset_.php
0.654KB
edt
ren
UseUse.php
0.067KB
edt
ren
Use_.php
1.414KB
edt
ren
While_.php
0.803KB
edt
ren
<?php declare(strict_types=1); namespace PhpParser\Node\Stmt; use PhpParser\Node; class Echo_ extends Node\Stmt { /** @var Node\Expr[] Expressions */ public array $exprs; /** * Constructs an echo node. * * @param Node\Expr[] $exprs Expressions * @param array<string, mixed> $attributes Additional attributes */ public function __construct(array $exprs, array $attributes = []) { $this->attributes = $attributes; $this->exprs = $exprs; } public function getSubNodeNames(): array { return ['exprs']; } public function getType(): string { return 'Stmt_Echo'; } }