!C99Shell v. 1.0 pre-release build #13!

Software: Apache/2.0.54 (Unix) mod_perl/1.99_09 Perl/v5.8.0 mod_ssl/2.0.54 OpenSSL/0.9.7l DAV/2 FrontPage/5.0.2.2635 PHP/4.4.0 mod_gzip/2.0.26.1a 

uname -a: Linux snow.he.net 4.4.276-v2-mono-1 #1 SMP Wed Jul 21 11:21:17 PDT 2021 i686 

uid=99(nobody) gid=98(nobody) groups=98(nobody) 

Safe-mode: OFF (not secure)

/home/makras/public_html/db_admin/   drwxr-xr-x
Free 318.37 GB of 458.09 GB (69.5%)
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.58 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/* $Id: server_variables.php,v 2.2 2003/11/26 22:52:24 rabus Exp $ */
// vim: expandtab sw=4 ts=4 sts=4:


/**
 * 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"
   
'    ' $strServerVars "\n"
   
'</h2>' "\n";


/**
 * Checks if the user is allowed to do what he tries to...
 */
if (!$is_superuser && !$cfg['ShowMysqlVars']) {
    echo 
$strNoPrivileges;
    require_once(
'./footer.inc.php');
}


/**
 * Sends the queries and buffers the results
 */
if (PMA_MYSQL_INT_VERSION >= 40003) {
    
$res = @PMA_mysql_query('SHOW SESSION VARIABLES;'$userlink) or PMA_mysqlDie(PMA_mysql_error($userlink), 'SHOW SESSION VARIABLES;');
    while (
$row PMA_mysql_fetch_row($res)) {
        
$serverVars[$row[0]] = $row[1];
    }
    @
mysql_free_result($res);
    
$res = @PMA_mysql_query('SHOW GLOBAL VARIABLES;'$userlink) or PMA_mysqlDie(PMA_mysql_error($userlink), 'SHOW GLOBAL VARIABLES;');
    while (
$row PMA_mysql_fetch_row($res)) {
        
$serverVarsGlobal[$row[0]] = $row[1];
    }
    @
mysql_free_result($res);
} else {
    
$res = @PMA_mysql_query('SHOW VARIABLES;'$userlink) or PMA_mysqlDie(PMA_mysql_error($userlink), 'SHOW VARIABLES;');
    while (
$row PMA_mysql_fetch_row($res)) {
        
$serverVars[$row[0]] = $row[1];
    }
    @
mysql_free_result($res);
}
unset(
$res);
unset(
$row);


/**
 * Displays the page
 */
?>
<table border="0">
    <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;
foreach (
$serverVars as $name => $value) {
?>
    <tr>
        <td bgcolor="<?php echo $useBgcolorOne $cfg['BgcolorOne'] : $cfg['BgcolorTwo']; ?>">
            <?php echo htmlspecialchars(str_replace('_'' '$name)) . "\n"?>
        </td>
        <td bgcolor="<?php echo $useBgcolorOne $cfg['BgcolorOne'] : $cfg['BgcolorTwo']; ?>">
            <?php echo htmlspecialchars($value) . "\n"?>
        </td>
<?php
    
if (PMA_MYSQL_INT_VERSION >= 40003) {
?>
        <td bgcolor="<?php echo $useBgcolorOne $cfg['BgcolorOne'] : $cfg['BgcolorTwo']; ?>">
            <?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 ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

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

--[ c99shell v. 1.0 pre-release build #13 powered by Captain Crunch Security Team | http://ccteam.ru | Generation time: 0.0046 ]--