!c99Shell v. 1.0 pre-release build #16!

Software: Apache/2.2.3 (CentOS). PHP/5.1.6 

uname -a: Linux mx-ll-110-164-51-230.static.3bb.co.th 2.6.18-194.el5PAE #1 SMP Fri Apr 2 15:37:44
EDT 2010 i686
 

uid=48(apache) gid=48(apache) groups=48(apache) 

Safe-mode: OFF (not secure)

/var/www/html/phpMyAdmin/libraries/export/   drwxr-xr-x
Free 52.34 GB of 127.8 GB (40.95%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     mediawiki.php (4.13 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/* vim: set expandtab sw=4 ts=4 sts=4: */
/**
 * Set of functions used to build MediaWiki dumps of tables
 *
 * @package phpMyAdmin-Export-MediaWiki
 * @version $Id: mediawiki.php 12972 2009-09-14 06:21:04Z drummingds1 $
 */
if (! defined('PHPMYADMIN')) {
    exit;
}

if (isset(
$plugin_list)) {
    
$plugin_list['mediawiki'] = array(
        
'text' => __('MediaWiki Table'),
        
'extension' => 'txt',
        
'mime_type' => 'text/plain',
        
'options' => array(
            array(
'type' => 'begin_group''name' => 'general_opts'),
            array(
'type' => 'hidden''name' => 'structure_or_data'),
            array(
'type' => 'end_group')
            ),
        
'options_text' => __('Options'),
        );
} else {

/**
 * Outputs comment
 *
 * @param   string      Text of comment
 *
 * @return  bool        Whether it suceeded
 */
function PMA_exportComment($text) {
    return 
TRUE;
}

/**
 * Outputs export footer
 *
 * @return  bool        Whether it suceeded
 *
 * @access  public
 */
function PMA_exportFooter() {
    return 
TRUE;
}

/**
 * Outputs export header
 *
 * @return  bool        Whether it suceeded
 *
 * @access  public
 */
function PMA_exportHeader() {
    return 
TRUE;
}

/**
 * Outputs database header
 *
 * @param   string      Database name
 *
 * @return  bool        Whether it suceeded
 *
 * @access  public
 */
function PMA_exportDBHeader($db) {
    return 
TRUE;
}

/**
 * Outputs database footer
 *
 * @param   string      Database name
 *
 * @return  bool        Whether it suceeded
 *
 * @access  public
 */
function PMA_exportDBFooter($db) {
    return 
TRUE;
}

/**
 * Outputs create database database
 *
 * @param   string      Database name
 *
 * @return  bool        Whether it suceeded
 *
 * @access  public
 */
function PMA_exportDBCreate($db) {
    return 
TRUE;
}

/**
 * Outputs the content of a table in MediaWiki format
 *
 * @param   string      the database name
 * @param   string      the table name
 * @param   string      the end of line sequence
 * @param   string      the url to go back in case of error
 * @param   string      SQL query for obtaining data
 *
 * @return  bool        Whether it suceeded
 *
 * @access  public
 */
function PMA_exportData($db$table$crlf$error_url$sql_query) {
    global 
$mediawiki_export_struct;
    global 
$mediawiki_export_data;
    
    
$result  PMA_DBI_fetch_result("SHOW COLUMNS FROM `" $db "`.`" $table "`");
    
$row_cnt count($result);

    
$output "{| cellpadding=\"10\" cellspacing=\"0\" border=\"1\" style=\"text-align:center;\"\n";
    
$output .= "|+'''" $table "'''\n";
    
$output .= "|- style=\"background:#ffdead;\"\n";
    
$output .= "! style=\"background:#ffffff\" | \n";
    for (
$i 0$i $row_cnt; ++$i) {
        
$output .= " | " $result[$i]['Field'];
        if ((
$i 1) != $row_cnt) {
            
$output .= "\n";
        }
    }
    
$output .= "\n";
    
    
$output .= "|- style=\"background:#f9f9f9;\"\n";
    
$output .= "! style=\"background:#f2f2f2\" | Type\n";
    for (
$i 0$i $row_cnt; ++$i) {
        
$output .= " | " $result[$i]['Type'];
        if ((
$i 1) != $row_cnt) {
            
$output .= "\n";
        }
    }
    
$output .= "\n";
    
    
$output .= "|- style=\"background:#f9f9f9;\"\n";
    
$output .= "! style=\"background:#f2f2f2\" | Null\n";
    for (
$i 0$i $row_cnt; ++$i) {
        
$output .= " | " $result[$i]['Null'];
        if ((
$i 1) != $row_cnt) {
            
$output .= "\n";
        }
    }
    
$output .= "\n";
    
    
$output .= "|- style=\"background:#f9f9f9;\"\n";
    
$output .= "! style=\"background:#f2f2f2\" | Default\n";
    for (
$i 0$i $row_cnt; ++$i) {
        
$output .= " | " $result[$i]['Default'];
        if ((
$i 1) != $row_cnt) {
            
$output .= "\n";
        }
    }
    
$output .= "\n";
    
    
$output .= "|- style=\"background:#f9f9f9;\"\n";
    
$output .= "! style=\"background:#f2f2f2\" | Extra\n";
    for (
$i 0$i $row_cnt; ++$i) {
        
$output .= " | " $result[$i]['Extra'];
        if ((
$i 1) != $row_cnt) {
            
$output .= "\n";
        }
    }
    
$output .= "\n";
    
    
$output .= "|}\n\n\n\n";
    return 
PMA_exportOutputHandler($output);
}

}
?>

:: Command execute ::

Enter:
 
Select:
 

:: Shadow's tricks :D ::

Useful Commands
 
Warning. Kernel may be alerted using higher levels
Kernel Info:

:: Preddy's tricks :D ::

Php Safe-Mode Bypass (Read Files)

File:

eg: /etc/passwd

Php Safe-Mode Bypass (List Directories):

Dir:

eg: /etc/

:: Search ::
  - regexp 

:: Upload ::
 
[ ok ]

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

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

--[ c999shell v. 1.0 pre-release build #16 Modded by Shadow & Preddy | RootShell Security Group | r57 c99 shell | Generation time: 0.0053 ]--