Ghost Exploiter Team Official
Mass Deface
Directory >>
/
var
/
www
/
html
/
back
/
vendor
/
phpstan
/
phpdoc-parser
/
src
/
Ast
/
Mass Deface Auto Detect Domain
/*Ubah Ke document_root untuk mass deface*/
File / Folder
Size
Action
.
-
type
file
dir
+File/Dir
ConstExpr
--
ren
NodeVisitor
--
ren
PhpDoc
--
ren
Type
--
ren
AbstractNodeVisitor.php
0.655KB
edt
ren
Attribute.php
0.333KB
edt
ren
Comment.php
0.648KB
edt
ren
Node.php
0.34KB
edt
ren
NodeAttributes.php
0.666KB
edt
ren
NodeTraverser.php
8.205KB
edt
ren
NodeVisitor.php
2.453KB
edt
ren
<?php declare(strict_types = 1); namespace PHPStan\PhpDocParser\Ast; use function trim; class Comment { public string $text; public int $startLine; public int $startIndex; public function __construct(string $text, int $startLine = -1, int $startIndex = -1) { $this->text = $text; $this->startLine = $startLine; $this->startIndex = $startIndex; } public function getReformattedText(): string { return trim($this->text); } /** * @param array<string, mixed> $properties */ public static function __set_state(array $properties): self { return new self($properties['text'], $properties['startLine'], $properties['startIndex']); } }
<=Back
Liking