!C99Shell v. 2.5 [PHP 8 Update] [24.05.2025]!

Software: Apache/2.4.41 (Ubuntu). PHP/8.0.30 

uname -a: Linux apirnd 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64 

uid=33(www-data) gid=33(www-data) groups=33(www-data) 

Safe-mode: OFF (not secure)

/var/www/html/main_file/vendor/aws/aws-sdk-php/src/   drwxr-xr-x
Free 13.11 GB of 57.97 GB (22.61%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


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

use 
Aws\Api\Service;
use 
Psr\Http\Message\RequestInterface;
use 
Psr\Log\InvalidArgumentException;

/**
 * Used to update the host based on a modeled endpoint trait
 *
 * IMPORTANT: this middleware must be added after the "build" step.
 *
 * @internal
 */
class EndpointParameterMiddleware
{
    
/** @var callable */
    
private $nextHandler;

    
/** @var Service */
    
private $service;

    
/**
     * Create a middleware wrapper function
     *
     * @param Service $service
     * @param array $args
     * @return \Closure
     */
    
public static function wrap(Service $service)
    {
        return function (callable 
$handler) use ($service) {
            return new 
self($handler$service);
        };
    }

    public function 
__construct(callable $nextHandlerService $service)
    {
        
$this->nextHandler $nextHandler;
        
$this->service $service;
    }

    public function 
__invoke(CommandInterface $commandRequestInterface $request)
    {
        
$nextHandler $this->nextHandler;

        
$operation $this->service->getOperation($command->getName());

        if (!empty(
$operation['endpoint']['hostPrefix'])) {
            
$prefix $operation['endpoint']['hostPrefix'];

            
// Captures endpoint parameters stored in the modeled host.
            // These are denoted by enclosure in braces, i.e. '{param}'
            
preg_match_all("/\{([a-zA-Z0-9]+)}/"$prefix$parameters);

            if (!empty(
$parameters[1])) {

                
// Captured parameters without braces stored in $parameters[1],
                // which should correspond to members in the Command object
                
foreach ($parameters[1] as $index => $parameter) {
                    if (empty(
$command[$parameter])) {
                        throw new 
\InvalidArgumentException(
                            
"The parameter '{$parameter}' must be set and not empty."
                        
);
                    }

                    
// Captured parameters with braces stored in $parameters[0],
                    // which are replaced by their corresponding Command value
                    
$prefix str_replace(
                        
$parameters[0][$index],
                        
$command[$parameter],
                        
$prefix
                    
);
                }
            }

            
$uri $request->getUri();
            
$host $prefix $uri->getHost();
            if (!
\Aws\is_valid_hostname($host)) {
                throw new 
\InvalidArgumentException(
                    
"The supplied parameters result in an invalid hostname: '{$host}'."
                
);
            }
            
$request $request->withUri($uri->withHost($host));
        }

        return 
$nextHandler($command$request);
    }
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0057 ]--