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 /
sdgamatya /
app /
Logs /
[ HOME SHELL ]
Name
Size
Permission
Action
Logs.php
758
B
-rw-r--r--
LogsFacade.php
204
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Logs.php
<?php namespace App\Logs; use App\Model\ActivityLog; use Sentinel; /** * Class Log * Maintains User Activity Log */ class Logs { /** * function create * @param modelInstance, action, newValue, oldValue * Stores user activity log * returns created log model instance */ function create($modelData, $action, $newValue = null, $oldValue = null) { try{ $log['model_name'] = class_basename(get_class($modelData)); $log['row_id'] = $modelData->id; $log['action'] = $action; $log['old_value'] = $oldValue; $log['new_value'] = $newValue; $log['user_id'] = Sentinel::getUser()->id; $activityLog = ActivityLog::create($log); return $activityLog; }catch(\Exception $e){ return $e; } } }
Close