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


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

/*
 * This file is part of Psy Shell.
 *
 * (c) 2012-2023 Justin Hileman
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

namespace Psy;

/**
 * Helpers for bypassing visibility restrictions, mostly used in code generated
 * by the `sudo` command.
 */
class Sudo
{
    
/**
     * Fetch a property of an object, bypassing visibility restrictions.
     *
     * @param object $object
     * @param string $property property name
     *
     * @return mixed Value of $object->property
     */
    
public static function fetchProperty($objectstring $property)
    {
        
$prop self::getProperty(new \ReflectionObject($object), $property);

        return 
$prop->getValue($object);
    }

    
/**
     * Assign the value of a property of an object, bypassing visibility restrictions.
     *
     * @param object $object
     * @param string $property property name
     * @param mixed  $value
     *
     * @return mixed Value of $object->property
     */
    
public static function assignProperty($objectstring $property$value)
    {
        
$prop self::getProperty(new \ReflectionObject($object), $property);
        
$prop->setValue($object$value);

        return 
$value;
    }

    
/**
     * Call a method on an object, bypassing visibility restrictions.
     *
     * @param object $object
     * @param string $method  method name
     * @param mixed  $args...
     *
     * @return mixed
     */
    
public static function callMethod($objectstring $method, ...$args)
    {
        
$refl = new \ReflectionObject($object);
        
$reflMethod $refl->getMethod($method);
        
$reflMethod->setAccessible(true);

        return 
$reflMethod->invokeArgs($object$args);
    }

    
/**
     * Fetch a property of a class, bypassing visibility restrictions.
     *
     * @param string|object $class    class name or instance
     * @param string        $property property name
     *
     * @return mixed Value of $class::$property
     */
    
public static function fetchStaticProperty($classstring $property)
    {
        
$prop self::getProperty(new \ReflectionClass($class), $property);
        
$prop->setAccessible(true);

        return 
$prop->getValue();
    }

    
/**
     * Assign the value of a static property of a class, bypassing visibility restrictions.
     *
     * @param string|object $class    class name or instance
     * @param string        $property property name
     * @param mixed         $value
     *
     * @return mixed Value of $class::$property
     */
    
public static function assignStaticProperty($classstring $property$value)
    {
        
$prop self::getProperty(new \ReflectionClass($class), $property);
        
$prop->setValue($value);

        return 
$value;
    }

    
/**
     * Call a static method on a class, bypassing visibility restrictions.
     *
     * @param string|object $class   class name or instance
     * @param string        $method  method name
     * @param mixed         $args...
     *
     * @return mixed
     */
    
public static function callStatic($classstring $method, ...$args)
    {
        
$refl = new \ReflectionClass($class);
        
$reflMethod $refl->getMethod($method);
        
$reflMethod->setAccessible(true);

        return 
$reflMethod->invokeArgs(null$args);
    }

    
/**
     * Fetch a class constant, bypassing visibility restrictions.
     *
     * @param string|object $class class name or instance
     * @param string        $const constant name
     *
     * @return mixed
     */
    
public static function fetchClassConst($classstring $const)
    {
        
$refl = new \ReflectionClass($class);

        do {
            if (
$refl->hasConstant($const)) {
                return 
$refl->getConstant($const);
            }

            
$refl $refl->getParentClass();
        } while (
$refl !== false);

        return 
false;
    }

    
/**
     * Construct an instance of a class, bypassing private constructors.
     *
     * @param string $class   class name
     * @param mixed  $args...
     */
    
public static function newInstance(string $class, ...$args)
    {
        
$refl = new \ReflectionClass($class);
        
$instance $refl->newInstanceWithoutConstructor();

        
$constructor $refl->getConstructor();
        
$constructor->setAccessible(true);
        
$constructor->invokeArgs($instance$args);

        return 
$instance;
    }

    
/**
     * Get a ReflectionProperty from an object (or its parent classes).
     *
     * @throws \ReflectionException if neither the object nor any of its parents has this property
     *
     * @param \ReflectionClass $refl
     * @param string           $property property name
     *
     * @return \ReflectionProperty
     */
    
private static function getProperty(\ReflectionClass $reflstring $property): \ReflectionProperty
    
{
        
$firstException null;
        do {
            try {
                
$prop $refl->getProperty($property);
                
$prop->setAccessible(true);

                return 
$prop;
            } catch (
\ReflectionException $e) {
                if (
$firstException === null) {
                    
$firstException $e;
                }

                
$refl $refl->getParentClass();
            }
        } while (
$refl !== false);

        throw 
$firstException;
    }
}

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