Linux localhost 5.4.0-198-generic #218-Ubuntu SMP Fri Sep 27 20:18:53 UTC 2024 x86_64
Apache/2.4.41 (Ubuntu)
: 23.92.16.63 | : 172.70.230.64
Cant Read [ /etc/named.conf ]
8.1.5
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 /
crm.oxopackaging.com /
app /
Jobs /
[ HOME SHELL ]
Name
Size
Permission
Action
ExportDeals.php
1.18
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : ExportDeals.php
<?php namespace App\Jobs; use App\Exports\DealExport; use Maatwebsite\Excel\Facades\Excel; use Illuminate\Contracts\Queue\ShouldQueue; use Illuminate\Bus\Queueable; use Illuminate\Queue\SerializesModels; use Illuminate\Queue\InteractsWithQueue; use Illuminate\Queue\Middleware\ThrottlesExceptions; use Illuminate\Foundation\Bus\Dispatchable; use Illuminate\Contracts\Queue\ShouldBeUnique; class ExportDeals implements ShouldQueue { use Dispatchable, InteractsWithQueue, Queueable, SerializesModels; protected $deal_name; protected $user_deals; protected $from; protected $to; public function __construct($deal_name, $user_deals, $from, $to) { $this->deal_name = $deal_name; $this->user_deals = $user_deals; $this->from = $from; $this->to = $to; } public function handle() { $fileName = 'deals-export-' . now()->format('Y-m-d') . '.xlsx'; // Store the Excel file on disk Excel::store(new DealExport($this->deal_name, $this->user_deals, $this->from, $this->to), $fileName, 'public'); // Notify the user or log the completion // Send notification or an email here with the file link } }
Close