!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\phpMyAdmin\libraries\   drwxrwxrwx
Free 7.97 GB of 239.26 GB (3.33%)
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:     Partition.class.php (1.47 KB)      -rw-rw-rw-
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/* vim: set expandtab sw=4 ts=4 sts=4: */
/**
 * Library for extracting information about the partitions
 *
 * @version $Id: Partition.class.php 11986 2008-11-24 11:05:40Z nijel $
 * @package phpMyAdmin
 */


/**
 * base Partition Class
 * @package phpMyAdmin
 */
class PMA_Partition
{
    
/**
     * returns array of partition names for a specific db/table
     *
     * @access  public
     * @uses    PMA_DBI_fetch_result()
     * @return  array   of partition names
     */
    
static public function getPartitionNames($db$table)
    {
        if (
PMA_Partition::havePartitioning()) {
            return 
PMA_DBI_fetch_result("select `PARTITION_NAME` from `information_schema`.`PARTITIONS` where `TABLE_SCHEMA` = '" $db "' and `TABLE_NAME` = '" $table "'");
        } else {
            return array();
        }
    }

    
/**
     * checks if MySQL server supports partitioning
     *
     * @static
     * @staticvar boolean $have_partitioning
     * @staticvar boolean $already_checked
     * @access  public
     * @uses    PMA_DBI_fetch_result()
     * @return  boolean
     */
    
static public function havePartitioning()
    {
        static 
$have_partitioning false;
        static 
$already_checked false;

        if (! 
$already_checked) {
            
$have_partitioning PMA_MYSQL_INT_VERSION >= 50100 && PMA_DBI_fetch_value("SHOW VARIABLES LIKE 'have_partitioning';");
            
$already_checked true;
        }
        return 
$have_partitioning;
    }

}

?>

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