Linux spg1.cloudpowerdns.com 5.14.0-611.34.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Feb 18 05:51:10 EST 2026 x86_64
LiteSpeed
Server IP : 176.9.63.151 & Your IP : 216.73.217.60
Domains :
Cant Read [ /etc/named.conf ]
User : fastear1
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
fastear1 /
siba91 /
core /
app /
Notify /
Delete
Unzip
Name
Size
Permission
Date
Action
Email.php
4.41
KB
-rw-r--r--
2023-11-03 02:38
Notifiable.php
127
B
-rw-r--r--
2023-11-03 02:38
Notify.php
2.73
KB
-rw-r--r--
2023-11-03 02:38
NotifyProcess.php
6.07
KB
-rw-r--r--
2023-11-03 02:38
Push.php
3.07
KB
-rw-r--r--
2023-11-03 02:38
Sms.php
1.59
KB
-rw-r--r--
2023-11-03 02:38
SmsGateway.php
3.51
KB
-rw-r--r--
2023-11-03 02:38
Save
Rename
<?php namespace App\Notify; use App\Notify\NotifyProcess; use App\Notify\SmsGateway; use App\Notify\Notifiable; class Sms extends NotifyProcess implements Notifiable{ /** * Mobile number of receiver * * @var string */ public $mobile; /** * Assign value to properties * * @return void */ public function __construct(){ $this->statusField = 'sms_status'; $this->body = 'sms_body'; $this->globalTemplate = 'sms_body'; $this->notifyConfig = 'sms_config'; } /** * Send notification * * @return void|bool */ public function send(){ //get message from parent $message = $this->getMessage(); if ($this->setting->sn && $message) { try { $gateway = $this->setting->sms_config->name; if($this->mobile){ $sendSms = new SmsGateway(); $sendSms->to = $this->mobile; $sendSms->from = $this->setting->sms_from; $sendSms->message = strip_tags($message); $sendSms->config = $this->setting->sms_config; $sendSms->$gateway(); $this->createLog('sms'); } } catch (\Exception $e) { $this->createErrorLog('SMS Error: '.$e->getMessage()); session()->flash('sms_error','API Error: '.$e->getMessage()); } } } /** * Configure some properties * * @return void */ public function prevConfiguration(){ //Check If User if ($this->user) { $this->mobile = $this->user->mobile; $this->receiverName = $this->user->fullname; } $this->toAddress = $this->mobile; } }