!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:\nuevo\phpMyAdmin2\libraries\   drwxrwxrwx
Free 9.42 GB of 239.26 GB (3.94%)
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 (2.16 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
 *
 * @package PhpMyAdmin
 */
if (! defined('PHPMYADMIN')) {
    exit;
}

/**
 * base Partition Class
 *
 * @package PhpMyAdmin
 */
class PMA_Partition
{
    
/**
     * returns array of partition names for a specific db/table
     *
     * @param string $db    database name
     * @param string $table table name
     *
     * @access  public
     * @return array   of partition names
     */
    
static public function getPartitionNames($db$table)
    {
        if (
PMA_Partition::havePartitioning()) {
            return 
$GLOBALS['dbi']->fetchResult(
                
"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
     * @return boolean
     */
    
static public function havePartitioning()
    {
        static 
$have_partitioning false;
        static 
$already_checked false;

        if (! 
$already_checked) {
            if (
PMA_MYSQL_INT_VERSION >= 50100) {
                if (
PMA_MYSQL_INT_VERSION 50600) {
                    if (
$GLOBALS['dbi']->fetchValue(
                        
"SHOW VARIABLES LIKE 'have_partitioning';"
                    
)) {
                        
$have_partitioning true;
                    }
                } else {
                    
// see http://dev.mysql.com/doc/refman/5.6/en/partitioning.html
                    
$plugins $GLOBALS['dbi']->fetchResult("SHOW PLUGINS");
                    foreach (
$plugins as $value) {
                        if (
$value['Name'] == 'partition') {
                            
$have_partitioning true;
                            break;
                        }
                    }
                }
                
$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.0312 ]--