!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/picomail.picotech.app/public_html/vendor/async-aws/core/src/Sts/Result/   drwxr-xr-x
Free 28.7 GB of 117.98 GB (24.32%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


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

namespace AsyncAws\Core\Sts\Result;

use 
AsyncAws\Core\Response;
use 
AsyncAws\Core\Result;

/**
 * Contains the response to a successful GetCallerIdentity request, including information about the entity making the
 * request.
 */
class GetCallerIdentityResponse extends Result
{
    
/**
     * The unique identifier of the calling entity. The exact value depends on the type of entity that is making the call.
     * The values returned are those listed in the **aws:userid** column in the Principal table found on the **Policy
     * Variables** reference page in the *IAM User Guide*.
     *
     * @see https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_policies_variables.html#principaltable
     */
    
private $userId;

    
/**
     * The Amazon Web Services account ID number of the account that owns or contains the calling entity.
     */
    
private $account;

    
/**
     * The Amazon Web Services ARN associated with the calling entity.
     */
    
private $arn;

    public function 
getAccount(): ?string
    
{
        
$this->initialize();

        return 
$this->account;
    }

    public function 
getArn(): ?string
    
{
        
$this->initialize();

        return 
$this->arn;
    }

    public function 
getUserId(): ?string
    
{
        
$this->initialize();

        return 
$this->userId;
    }

    protected function 
populateResult(Response $response): void
    
{
        
$data = new \SimpleXMLElement($response->getContent());
        
$data $data->GetCallerIdentityResult;

        
$this->userId = ($v $data->UserId) ? (string) $v null;
        
$this->account = ($v $data->Account) ? (string) $v null;
        
$this->arn = ($v $data->Arn) ? (string) $v 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.0048 ]--