!C99Shell v. 2.1 [PHP 8 Update] [02.02.2022]!

Software: Apache/2.4.53 (Unix) OpenSSL/1.1.1o PHP/7.4.29 mod_perl/2.0.12 Perl/v5.34.1. PHP/7.4.29 

uname -a: Linux vps-2738122-x 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64 

uid=1(daemon) gid=1(daemon) grupos=1(daemon) 

Safe-mode: OFF (not secure)

/opt/apex_led/php/3ros/simpletest/   drwxrwxr-x
Free 14.52 GB of 61.93 GB (23.45%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     reflection_php4.php (2.78 KB)      -rwxrwxr-x
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
    
/**
     *    base include file for SimpleTest
     *    @package    SimpleTest
     *    @subpackage    UnitTester
     *    @version    $Id: reflection_php4.php,v 1.8 2005/08/24 01:21:34 lastcraft Exp $
     */

    /**
     *    Version specific reflection API.
     *      @package SimpleTest
     *      @subpackage UnitTester
     */
    
class SimpleReflection {
        var 
$_interface;
        
        
/**
         *    Stashes the class/interface.
         *    @param string $interface    Class or interface
         *                                to inspect.
         */
        
function SimpleReflection($interface) {
            
$this->_interface $interface;
        }
        
        
/**
         *    Checks that a class has been declared.
         *    @return boolean        True if defined.
         *    @access public
         */
        
function classExists() {
            return 
class_exists($this->_interface);
        }
        
        
/**
         *    Needed to kill the autoload feature in PHP5
         *    for classes created dynamically.
         *    @return boolean        True if defined.
         *    @access public
         */
        
function classExistsSansAutoload() {
            return 
class_exists($this->_interface);
        }
        
        
/**
         *    Checks that a class or interface has been
         *    declared.
         *    @return boolean        True if defined.
         *    @access public
         */
        
function classOrInterfaceExists() {
            return 
class_exists($this->_interface);
        }
        
        
/**
         *    Needed to kill the autoload feature in PHP5
         *    for classes created dynamically.
         *    @return boolean        True if defined.
         *    @access public
         */
        
function classOrInterfaceExistsSansAutoload() {
            return 
class_exists($this->_interface);
        }
        
        
/**
         *    Gets the list of methods on a class or
         *    interface.
         *    @returns array          List of method names.
         *    @access public
         */
        
function getMethods() {
            return 
get_class_methods($this->_interface);
        }
        
        
/**
         *    Gets the list of interfaces from a class. If the
         *      class name is actually an interface then just that
         *      interface is returned.
         *    @returns array          List of interfaces.
         *    @access public
         */
        
function getInterfaces() {
            return array();
        }
        
        
/**
         *      Gets the source code matching the declaration
         *      of a method.
         *       @param string $method          Method name.
         *    @access public
         */
        
function getSignature($method) {
            return 
"function &$method()";
        }
    }
?>

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.1 [PHP 8 Update] [02.02.2022] maintained byC99Shell Github | Generation time: 0.824 ]--