Ghost Exploiter Team Official
Mass Deface
Directory >>
/
var
/
www
/
html
/
back
/
.git
/
objects
/
09
/
Mass Deface Auto Detect Domain
/*Ubah Ke document_root untuk mass deface*/
File / Folder
Size
Action
.
-
type
file
dir
+File/Dir
.gitignore
0.01KB
edt
ren
311b4b8614eeb9a36c05dc5
...
0.814KB
edt
ren
Account.php
1.246KB
edt
ren
ModelRepository.php
1.382KB
edt
ren
Payment.php
7.176KB
edt
ren
PhpProcess.php
2.438KB
edt
ren
api-20260128225026.php
1.377KB
edt
ren
api.php
0KB
edt
ren
console.php
0.36KB
edt
ren
debugbar.php
13.946KB
edt
ren
default.conf
0.759KB
edt
ren
index-20260128222634.php
0.457KB
edt
ren
index-20260128222837.php
0.457KB
edt
ren
index.php
0.457KB
edt
ren
integrations.php
0.694KB
edt
ren
phpunit
3.481KB
edt
ren
services-20260128204300
...
1.011KB
edt
ren
services.php
1.011KB
edt
ren
web.php
0KB
edt
ren
<?php namespace App\Repositories\Model; use App\Models\Account; use App\Models\Counterparty; use App\Models\Organization; use App\Models\System; use App\Repositories\Model\Interfaces\ModelInterface; use Illuminate\Support\Collection; class ModelRepository implements ModelInterface { public function getAccounts(int $modelId, $archive) { return Account::query()->where(['model_id' => $modelId, 'archived' => $archive])->with(['organization', 'payments'])->get(); } public function getCashAccounts(int $modelId, bool $isCash, bool $archive = false) { return Account::query()->where(['model_id' => $modelId, 'is_cash' => $isCash, 'archived' => $archive])->with(['organization', 'payments'])->get(); } public function getCounterparties($modelId, $archive) { return Counterparty::query()->where(['model_id' => $modelId, 'archived' => $archive])->get(); } public function getOrganizations($modelId, $archive) { return Organization::query()->where(['model_id' => $modelId, 'archived' => $archive])->get(); } public function getModel(int $modelId) { return System::query()->findOrFail($modelId); } public function getAll(): Collection { return System::query()->get(); } public function update(int $modelId, array $data) { return System::find($modelId)->update($data); } }
<=Back
Liking