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\Services; use App\Responses\ResponseDto; use Illuminate\Http\JsonResponse; class ResponseService { public static function json($result = null, $status = 200): JsonResponse { try { return response()->json(self::wrap($result), $status); } catch (\Throwable $exception) { dd($exception); } } public static function array($result = null, bool $paginatable = false): array { try { return self::wrap($result, $paginatable)->toArray(); } catch (\Throwable $exception) { dd($exception); } } public static function wrap(array $result = null, ?bool $paginatable = false): ResponseDto { return ResponseDto::from([...$result, 'paginatable' => $paginatable]); } }