!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/smabpro.picotech.app/public_html/vendor/mtdowling/jmespath.php/bin/   drwxr-xr-x
Free 28.57 GB of 117.98 GB (24.22%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     perf.php (1.81 KB)      -rwxr-xr-x
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
#!/usr/bin/env php
<?php

if (file_exists(__DIR__ '/../vendor/autoload.php')) {
    require 
__DIR__ '/../vendor/autoload.php';
} elseif (
file_exists(__DIR__ '/../../../autoload.php')) {
    require 
__DIR__ '/../../../autoload.php';
} else {
    throw new 
RuntimeException('Unable to locate autoload.php file.');
}

$xdebug = new \Composer\XdebugHandler\XdebugHandler('perf.php');
$xdebug->check();
unset(
$xdebug);

$dir = isset($argv[1]) ? $argv[1] : __DIR__ '/../tests/compliance/perf';
is_dir($dir) or die('Dir not found: ' $dir);
// Warm up the runner
\JmesPath\Env::search('foo', []);

$total 0;
foreach (
glob($dir '/*.json') as $file) {
    
$total += runSuite($file);
}
echo 
"\nTotal time: {$total}\n";

function 
runSuite($file)
{
    
$contents file_get_contents($file);
    
$json json_decode($contentstrue);
    
$total 0;
    foreach (
$json as $suite) {
        foreach (
$suite['cases'] as $case) {
            
$total += runCase(
                
$suite['given'],
                
$case['expression'],
                
$case['name']
            );
        }
    }
    return 
$total;
}

function 
runCase($given$expression$name)
{
    
$best 99999;
    
$runtime \JmesPath\Env::createRuntime();

    for (
$i 0$i 100$i++) {
        
$t microtime(true);
        
$runtime($expression$given);
        
$tryTime = (microtime(true) - $t) * 1000;
        if (
$tryTime $best) {
            
$best $tryTime;
        }
        if (!
getenv('CACHE')) {
            
$runtime \JmesPath\Env::createRuntime();
            
// Delete compiled scripts if not caching.
            
if ($runtime instanceof \JmesPath\CompilerRuntime) {
                
array_map('unlink'glob(sys_get_temp_dir() . '/jmespath_*.php'));
            }
        }
    }

    
printf("time: %07.4fms name: %s\n"$best$name);

    return 
$best;
}

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