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

Software: Apache/2.0.54 (Unix) mod_perl/1.99_09 Perl/v5.8.0 mod_ssl/2.0.54 OpenSSL/0.9.7l DAV/2 FrontPage/5.0.2.2635 PHP/4.4.0 mod_gzip/2.0.26.1a 

uname -a: Linux snow.he.net 4.4.276-v2-mono-1 #1 SMP Wed Jul 21 11:21:17 PDT 2021 i686 

uid=99(nobody) gid=98(nobody) groups=98(nobody) 

Safe-mode: OFF (not secure)

/home/makras/public_html/db_admin/   drwxr-xr-x
Free 318.39 GB of 458.09 GB (69.5%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     tbl_properties_export.php (1.96 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/* $Id: tbl_properties_export.php,v 2.2 2003/11/26 22:52:24 rabus Exp $ */
// vim: expandtab sw=4 ts=4 sts=4:


/**
 * Gets tables informations and displays top links
 */
require('./tbl_properties_common.php');
$url_query .= '&amp;goto=tbl_properties_export.php&amp;back=tbl_properties_export.php';
require(
'./tbl_properties_table_info.php');
?>

<!-- Dump of a table -->
<h2>
    <?php echo $strViewDump "\n"?>
</h2>

<?php
if (isset($sql_query)) {
    
// I don't want the LIMIT clause, so I use the analyzer
    // to reconstruct the query with only some parts
    // because the LIMIT clause may come from us (sql.php, sql_limit_to_append
    // or may come from the user.
    // Then, the limits set in the form will be added.
    // TODO: do we need some other parts here, like PROCEDURE or FOR UPDATE?

    
$parsed_sql PMA_SQP_parse($sql_query);
    
$analyzed_sql PMA_SQP_analyze($parsed_sql);
    
$sql_query 'SELECT ';

    if (isset(
$analyzed_sql[0]['queryflags']['distinct'])) {
        
$sql_query .= ' DISTINCT ';
    }

    
$sql_query .= $analyzed_sql[0]['select_expr_clause'];

    if (!empty(
$analyzed_sql[0]['from_clause'])) {
        
$sql_query .= ' FROM ' $analyzed_sql[0]['from_clause'];
    }
    if (!empty(
$analyzed_sql[0]['where_clause'])) {
        
$sql_query .= ' WHERE ' $analyzed_sql[0]['where_clause'];
    }
    if (!empty(
$analyzed_sql[0]['group_by_clause'])) {
        
$sql_query .= ' GROUP BY ' $analyzed_sql[0]['group_by_clause'];
    }
    if (!empty(
$analyzed_sql[0]['having_clause'])) {
        
$sql_query .= ' HAVING ' $analyzed_sql[0]['having_clause'];
    }
    if (!empty(
$analyzed_sql[0]['order_by_clause'])) {
        
$sql_query .= ' ORDER BY ' $analyzed_sql[0]['order_by_clause'];
    }

    
// TODO: can we avoid reparsing the query here?
    
PMA_showMessage($GLOBALS['strSQLQuery']);
}

$export_type 'table';
require_once(
'./libraries/display_export.lib.php');


/**
 * Displays the footer
 */
require_once('./footer.inc.php');
?>

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

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

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