!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\htdocs\phpmyadmin\   drwxrwxrwx
Free 7.98 GB of 239.26 GB (3.34%)
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:     server_variables.php (2.72 KB)      -rw-rw-rw-
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/* $Id: server_variables.php,v 2.10 2005/11/18 12:50:49 cybot_tm Exp $ */
// vim: expandtab sw=4 ts=4 sts=4:

require_once('./libraries/common.lib.php');

/**
 * Does the common work
 */
require('./server_common.inc.php');


/**
 * Displays the links
 */
require('./server_links.inc.php');


/**
 * Displays the sub-page heading
 */
echo '<h2>' "\n"
   
. ($cfg['MainPageIconic'] ? '<img class="icon" src="' $pmaThemeImage 's_vars.png" width="16" height="16" alt="" />' '' )
   . 
'' $strServerVars "\n"
   
'</h2>' "\n";


/**
 * Sends the queries and buffers the results
 */
if (PMA_MYSQL_INT_VERSION >= 40003) {
    
$res PMA_DBI_query('SHOW SESSION VARIABLES;');
    while (
$row PMA_DBI_fetch_row($res)) {
        
$serverVars[$row[0]] = $row[1];
    }
    
PMA_DBI_free_result($res);
    unset(
$res$row);
    
$res PMA_DBI_query('SHOW GLOBAL VARIABLES;');
    while (
$row PMA_DBI_fetch_row($res)) {
        
$serverVarsGlobal[$row[0]] = $row[1];
    }
    
PMA_DBI_free_result($res);
    unset(
$res$row);
} else {
    
$res PMA_DBI_query('SHOW VARIABLES;');
    while (
$row PMA_DBI_fetch_row($res)) {
        
$serverVars[$row[0]] = $row[1];
    }
    
PMA_DBI_free_result($res);
    unset(
$res$row);
}
unset(
$res);
unset(
$row);


/**
 * Displays the page
 */
?>
<table border="0" cellpadding="2" cellspacing="1" width="90%">
    <tr>
        <th>&nbsp;<?php echo $strVar?>&nbsp;</th>
<?php
echo '        <th>&nbsp;';
if (
PMA_MYSQL_INT_VERSION >= 40003) {
    echo 
$strSessionValue '&nbsp;</th>' "\n"
       
'        <th>&nbsp;' $strGlobalValue;
} else {
    echo 
$strValue;
}
echo 
'&nbsp;</th>' "\n";
?>
    </tr>
<?php
$useBgcolorOne 
TRUE;
$on_mouse='';
foreach (
$serverVars as $name => $value) {
        if (
$GLOBALS['cfg']['BrowsePointerEnable'] == TRUE) {
            
$on_mouse ' onmouseover="this.style.backgroundColor=\'' $GLOBALS['cfg']['BrowsePointerColor'] . '\';"'
                      
' onmouseout="this.style.backgroundColor=\'' . ($useBgcolorOne $cfg['BgcolorOne'] : $cfg['BgcolorTwo']) . '\';"';
        } else {
            
$on_mouse '';
        }
?>
    <tr bgcolor="<?php echo $useBgcolorOne $cfg['BgcolorOne'] : $cfg['BgcolorTwo']; ?>"<?php echo $on_mouse?>>
        <td nowrap="nowrap" valign="top">
            <b><?php echo htmlspecialchars(str_replace('_'' '$name)) . "\n"?></b>
        </td>
        <td>
            <?php echo htmlspecialchars($value) . "\n"?>
        </td>
<?php
    
if (PMA_MYSQL_INT_VERSION >= 40003) {
?>
        <td>
            <?php echo htmlspecialchars($serverVarsGlobal[$name]) . "\n"?>
        </td>
<?php
    
}
    
$useBgcolorOne = !$useBgcolorOne;
?>
    </tr>
<?php
}
?>
</table>
<?php


/**
 * Sends the footer
 */
require_once('./footer.inc.php');

?>

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