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


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

/**
 * Represents an API operation.
 */
class Operation extends AbstractModel
{
    private 
$input;
    private 
$output;
    private 
$errors;
    private 
$staticContextParams = [];
    private 
$contextParams;

    public function 
__construct(array $definitionShapeMap $shapeMap)
    {
        
$definition['type'] = 'structure';

        if (!isset(
$definition['http']['method'])) {
            
$definition['http']['method'] = 'POST';
        }

        if (!isset(
$definition['http']['requestUri'])) {
            
$definition['http']['requestUri'] = '/';
        }

        if (isset(
$definition['staticContextParams'])) {
            
$this->staticContextParams $definition['staticContextParams'];
        }

        
parent::__construct($definition$shapeMap);
        
$this->contextParams $this->setContextParams();
    }

    
/**
     * Returns an associative array of the HTTP attribute of the operation:
     *
     * - method: HTTP method of the operation
     * - requestUri: URI of the request (can include URI template placeholders)
     *
     * @return array
     */
    
public function getHttp()
    {
        return 
$this->definition['http'];
    }

    
/**
     * Get the input shape of the operation.
     *
     * @return StructureShape
     */
    
public function getInput()
    {
        if (!
$this->input) {
            if (
$input $this['input']) {
                
$this->input $this->shapeFor($input);
            } else {
                
$this->input = new StructureShape([], $this->shapeMap);
            }
        }

        return 
$this->input;
    }

    
/**
     * Get the output shape of the operation.
     *
     * @return StructureShape
     */
    
public function getOutput()
    {
        if (!
$this->output) {
            if (
$output $this['output']) {
                
$this->output $this->shapeFor($output);
            } else {
                
$this->output = new StructureShape([], $this->shapeMap);
            }
        }

        return 
$this->output;
    }

    
/**
     * Get an array of operation error shapes.
     *
     * @return Shape[]
     */
    
public function getErrors()
    {
        if (
$this->errors === null) {
            if (
$errors $this['errors']) {
                foreach (
$errors as $key => $error) {
                    
$errors[$key] = $this->shapeFor($error);
                }
                
$this->errors $errors;
            } else {
                
$this->errors = [];
            }
        }

        return 
$this->errors;
    }

    
/**
     * Gets static modeled static values used for
     * endpoint resolution.
     *
     * @return array
     */
    
public function getStaticContextParams()
    {
        return 
$this->staticContextParams;
    }

    
/**
     * Gets definition of modeled dynamic values used
     * for endpoint resolution
     *
     * @return array
     */
    
public function getContextParams()
    {
        return 
$this->contextParams;
    }

    private function 
setContextParams()
    {
        
$members $this->getInput()->getMembers();
        
$contextParams = [];

        foreach(
$members as $name => $shape) {
            if (!empty(
$contextParam $shape->getContextParam())) {
                
$contextParams[$contextParam['name']] = [
                    
'shape' => $name,
                    
'type' => $shape->getType()
                ];
            }
        }
        return 
$contextParams;
    }
}

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