!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_status.php (14.11 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/* $Id: server_status.php,v 2.4 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');


/**
 * InnoDB status
 */
if (!empty($innodbstatus)) {
    echo 
'<h2>' "\n"
       
'    ' $strInnodbStat "\n"
       
'</h2>' "\n";
    
$sql_query 'SHOW INNODB STATUS;';
    
$res PMA_mysql_query($sql_query$userlink) or PMA_mysqlDie(PMA_mysql_error($userlink), $sql_query);
    
$row PMA_mysql_fetch_row($res);
    echo 
'<pre>' "\n"
       
htmlspecialchars($row[0]) . "\n"
       
'</pre>' "\n";
    
mysql_free_result($res);
    require_once(
'./footer.inc.php');
}

/**
 * Displays the sub-page heading
 */
echo '<h2>' "\n"
   
'    ' $strServerStatus "\n"
   
'</h2>' "\n";


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


/**
 * Sends the query and buffers the result
 */
$res = @PMA_mysql_query('SHOW STATUS;'$userlink) or PMA_mysqlDie(PMA_mysql_error($userlink), 'SHOW STATUS;');
while (
$row PMA_mysql_fetch_row($res)) {
    
$serverStatus[$row[0]] = $row[1];
}
@
mysql_free_result($res);
unset(
$res);
unset(
$row);


/**
 * Displays the page
 */
//Uptime calculation
$res = @PMA_mysql_query('SELECT UNIX_TIMESTAMP() - ' $serverStatus['Uptime'] . ';');
$row PMA_mysql_fetch_row($res);
echo 
sprintf($strServerStatusUptimePMA_timespanFormat($serverStatus['Uptime']), PMA_localisedDate($row[0])) . "\n";
mysql_free_result($res);
unset(
$res);
unset(
$row);
//Get query statistics
$queryStats = array();
$tmp_array $serverStatus;
foreach(
$tmp_array AS $name => $value) {
    if (
substr($name04) == 'Com_') {
        
$queryStats[str_replace('_'' 'substr($name4))] = $value;
        unset(
$serverStatus[$name]);
    }
}
unset(
$tmp_array);
?>
<ul>
    <li>
        <!-- Server Traffic -->
        <?php echo $strServerTrafficNotes?><br />
        <table border="0">
            <tr>
                <td valign="top">
                    <table border="0">
                        <tr>
                            <th colspan="2">&nbsp;<?php echo $strTraffic?>&nbsp;</th>
                            <th>&nbsp;&oslash;&nbsp;<?php echo $strPerHour?>&nbsp;</th>
                        </tr>
                        <tr>
                            <td bgcolor="<?php echo $cfg['BgcolorTwo']; ?>">&nbsp;<?php echo $strReceived?>&nbsp;</td>
                            <td bgcolor="<?php echo $cfg['BgcolorTwo']; ?>" align="right">&nbsp;<?php echo join(' 'PMA_formatByteDown($serverStatus['Bytes_received'])); ?>&nbsp;</td>
                            <td bgcolor="<?php echo $cfg['BgcolorTwo']; ?>" align="right">&nbsp;<?php echo join(' 'PMA_formatByteDown($serverStatus['Bytes_received'] * 3600 $serverStatus['Uptime'])); ?>&nbsp;</td>
                        </tr>
                        <tr>
                            <td bgcolor="<?php echo $cfg['BgcolorTwo']; ?>">&nbsp;<?php echo $strSent?>&nbsp;</td>
                            <td bgcolor="<?php echo $cfg['BgcolorTwo']; ?>" align="right">&nbsp;<?php echo join(' 'PMA_formatByteDown($serverStatus['Bytes_sent'])); ?>&nbsp;</td>
                            <td bgcolor="<?php echo $cfg['BgcolorTwo']; ?>" align="right">&nbsp;<?php echo join(' 'PMA_formatByteDown($serverStatus['Bytes_sent'] * 3600 $serverStatus['Uptime'])); ?>&nbsp;</td>
                        </tr>
                        <tr>
                            <td bgcolor="<?php echo $cfg['BgcolorOne']; ?>">&nbsp;<?php echo $strTotalUC?>&nbsp;</td>
                            <td bgcolor="<?php echo $cfg['BgcolorOne']; ?>" align="right">&nbsp;<?php echo join(' 'PMA_formatByteDown($serverStatus['Bytes_received'] + $serverStatus['Bytes_sent'])); ?>&nbsp;</td>
                            <td bgcolor="<?php echo $cfg['BgcolorOne']; ?>" align="right">&nbsp;<?php echo join(' 'PMA_formatByteDown(($serverStatus['Bytes_received'] + $serverStatus['Bytes_sent']) * 3600 $serverStatus['Uptime'])); ?>&nbsp;</td>
                        </tr>
                    </table>
                </td>
                <td valign="top">
                    <table border="0">
                        <tr>
                            <th colspan="2">&nbsp;<?php echo $strConnections?>&nbsp;</th>
                            <th>&nbsp;&oslash;&nbsp;<?php echo $strPerHour?>&nbsp;</th>
                            <th>&nbsp;%&nbsp;</th>
                        </tr>
                        <tr>
                            <td bgcolor="<?php echo $cfg['BgcolorTwo']; ?>">&nbsp;<?php echo $strFailedAttempts?>&nbsp;</td>
                            <td bgcolor="<?php echo $cfg['BgcolorTwo']; ?>" align="right">&nbsp;<?php echo number_format($serverStatus['Aborted_connects'], 0$number_decimal_separator$number_thousands_separator); ?>&nbsp;</td>
                            <td bgcolor="<?php echo $cfg['BgcolorTwo']; ?>" align="right">&nbsp;<?php echo number_format(($serverStatus['Aborted_connects'] * 3600 $serverStatus['Uptime']), 2$number_decimal_separator$number_thousands_separator); ?>&nbsp;</td>
                            <td bgcolor="<?php echo $cfg['BgcolorTwo']; ?>" align="right">&nbsp;<?php echo ($serverStatus['Connections'] > ) ? number_format(($serverStatus['Aborted_connects'] * 100 $serverStatus['Connections']), 2$number_decimal_separator$number_thousands_separator) . '&nbsp;%' '---'?>&nbsp;</td>
                        </tr>
                        <tr>
                            <td bgcolor="<?php echo $cfg['BgcolorTwo']; ?>">&nbsp;<?php echo $strAbortedClients?>&nbsp;</td>
                            <td bgcolor="<?php echo $cfg['BgcolorTwo']; ?>" align="right">&nbsp;<?php echo number_format($serverStatus['Aborted_clients'], 0$number_decimal_separator$number_thousands_separator); ?>&nbsp;</td>
                            <td bgcolor="<?php echo $cfg['BgcolorTwo']; ?>" align="right">&nbsp;<?php echo number_format(($serverStatus['Aborted_clients'] * 3600 $serverStatus['Uptime']), 2$number_decimal_separator$number_thousands_separator); ?>&nbsp;</td>
                            <td bgcolor="<?php echo $cfg['BgcolorTwo']; ?>" align="right">&nbsp;<?php echo ($serverStatus['Connections'] > ) ? number_format(($serverStatus['Aborted_clients'] * 100 $serverStatus['Connections']), $number_decimal_separator$number_thousands_separator) . '&nbsp;%' '---'?>&nbsp;</td>
                        </tr>
                        <tr>
                            <td bgcolor="<?php echo $cfg['BgcolorOne']; ?>">&nbsp;<?php echo $strTotalUC?>&nbsp;</td>
                            <td bgcolor="<?php echo $cfg['BgcolorOne']; ?>" align="right">&nbsp;<?php echo number_format($serverStatus['Connections'], 0$number_decimal_separator$number_thousands_separator); ?>&nbsp;</td>
                            <td bgcolor="<?php echo $cfg['BgcolorOne']; ?>" align="right">&nbsp;<?php echo number_format(($serverStatus['Connections'] * 3600 $serverStatus['Uptime']), 2$number_decimal_separator$number_thousands_separator); ?>&nbsp;</td>
                            <td bgcolor="<?php echo $cfg['BgcolorOne']; ?>" align="right">&nbsp;<?php echo number_format(1002$number_decimal_separator$number_thousands_separator); ?>&nbsp;%&nbsp;</td>
                        </tr>
                    </table>
                </td>
            </tr>
        </table>
    </li>
    <br />
    <li>
        <!-- Queries -->
        <?php echo sprintf($strQueryStatisticsnumber_format($serverStatus['Questions'], 0$number_decimal_separator$number_thousands_separator)) . "\n"?>
        <table border="0">
            <tr>
                <td colspan="2">
                    <br />
                    <table border="0" align="right">
                        <tr>
                            <th>&nbsp;<?php echo $strTotalUC?>&nbsp;</th>
                            <th>&nbsp;&oslash;&nbsp;<?php echo $strPerHour?>&nbsp;</th>
                            <th>&nbsp;&oslash;&nbsp;<?php echo $strPerMinute?>&nbsp;</th>
                            <th>&nbsp;&oslash;&nbsp;<?php echo $strPerSecond?>&nbsp;</th>
                        </tr>
                        <tr>
                            <td bgcolor="<?php echo $cfg['BgcolorOne']; ?>" align="right">&nbsp;<?php echo number_format($serverStatus['Questions'], 0$number_decimal_separator$number_thousands_separator); ?>&nbsp;</td>
                            <td bgcolor="<?php echo $cfg['BgcolorOne']; ?>" align="right">&nbsp;<?php echo number_format(($serverStatus['Questions'] * 3600 $serverStatus['Uptime']), 2$number_decimal_separator$number_thousands_separator); ?>&nbsp;</td>
                            <td bgcolor="<?php echo $cfg['BgcolorOne']; ?>" align="right">&nbsp;<?php echo number_format(($serverStatus['Questions'] * 60 $serverStatus['Uptime']), 2$number_decimal_separator$number_thousands_separator); ?>&nbsp;</td>
                            <td bgcolor="<?php echo $cfg['BgcolorOne']; ?>" align="right">&nbsp;<?php echo number_format(($serverStatus['Questions'] / $serverStatus['Uptime']), 2$number_decimal_separator$number_thousands_separator); ?>&nbsp;</td>
                        </tr>
                    </table>
                </td>
            </tr>
            <tr>
                <td valign="top">
                    <table border="0">
                        <tr>
                            <th colspan="2">&nbsp;<?php echo $strQueryType?>&nbsp;</th>
                            <th>&nbsp;&oslash;&nbsp;<?php echo $strPerHour?>&nbsp;</th>
                            <th>&nbsp;%&nbsp;</th>
                        </tr>
<?php

$useBgcolorOne 
TRUE;
$countRows 0;
foreach (
$queryStats as $name => $value) {

// For the percentage column, use Questions - Connections, because
// the number of connections is not an item of the Query types
// but is included in Questions. Then the total of the percentages is 100.
?>
                        <tr>
                            <td bgcolor="<?php echo $useBgcolorOne $cfg['BgcolorOne'] : $cfg['BgcolorTwo']; ?>">&nbsp;<?php echo htmlspecialchars($name); ?>&nbsp;</td>
                            <td bgcolor="<?php echo $useBgcolorOne $cfg['BgcolorOne'] : $cfg['BgcolorTwo']; ?>" align="right">&nbsp;<?php echo number_format($value0$number_decimal_separator$number_thousands_separator); ?>&nbsp;</td>
                            <td bgcolor="<?php echo $useBgcolorOne $cfg['BgcolorOne'] : $cfg['BgcolorTwo']; ?>" align="right">&nbsp;<?php echo number_format(($value 3600 $serverStatus['Uptime']), 2$number_decimal_separator$number_thousands_separator); ?>&nbsp;</td>
                            <td bgcolor="<?php echo $useBgcolorOne $cfg['BgcolorOne'] : $cfg['BgcolorTwo']; ?>" align="right">&nbsp;<?php echo number_format(($value 100 / ($serverStatus['Questions'] - $serverStatus['Connections'])), 2$number_decimal_separator$number_thousands_separator); ?>&nbsp;%&nbsp;</td>
                        </tr>
<?php
    $useBgcolorOne 
= !$useBgcolorOne;
    if (++
$countRows == ceil(count($queryStats) / 2)) {
        
$useBgcolorOne TRUE;
?>
                    </table>
                </td>
                <td valign="top">
                    <table border="0">
                        <tr>
                            <th colspan="2">&nbsp;<?php echo $strQueryType?>&nbsp;</th>
                            <th>&nbsp;&oslash;&nbsp;<?php echo $strPerHour?>&nbsp;</th>
                            <th>&nbsp;%&nbsp;</th>
                        </tr>
<?php
    
}
}
unset(
$countRows);
unset(
$useBgcolorOne);
?>
                    </table>
                </td>
            </tr>
        </table>
    </li>
<?php
//Unset used variables
unset($serverStatus['Aborted_clients']);
unset(
$serverStatus['Aborted_connects']);
unset(
$serverStatus['Bytes_received']);
unset(
$serverStatus['Bytes_sent']);
unset(
$serverStatus['Connections']);
unset(
$serverStatus['Questions']);
unset(
$serverStatus['Uptime']);

if (!empty(
$serverStatus)) {
?>
    <br />
    <li>
        <!-- Other status variables -->
        <b><?php echo $strMoreStatusVars?></b><br />
        <table border="0">
            <tr>
                <td valign="top">
                    <table border="0">
                        <tr>
                            <th>&nbsp;<?php echo $strVar?>&nbsp;</th>
                            <th>&nbsp;<?php echo $strValue?>&nbsp;</th>
                        </tr>
<?php
    $useBgcolorOne 
TRUE;
    
$countRows 0;
    foreach(
$serverStatus AS $name => $value) {
?>
                        <tr>
                            <td bgcolor="<?php echo $useBgcolorOne $cfg['BgcolorOne'] : $cfg['BgcolorTwo']; ?>">&nbsp;<?php echo htmlspecialchars(str_replace('_'' '$name)); ?>&nbsp;</td>
                            <td bgcolor="<?php echo $useBgcolorOne $cfg['BgcolorOne'] : $cfg['BgcolorTwo']; ?>" align="right">&nbsp;<?php echo htmlspecialchars($value); ?>&nbsp;</td>
                        </tr>
<?php
        $useBgcolorOne 
= !$useBgcolorOne;
        if (++
$countRows == ceil(count($serverStatus) / 3) || $countRows == ceil(count($serverStatus) * 3)) {
            
$useBgcolorOne TRUE;
?>
                    </table>
                </td>
                <td valign="top">
                    <table border="0">
                        <tr>
                            <th>&nbsp;<?php echo $strVar?>&nbsp;</th>
                            <th>&nbsp;<?php echo $strValue?>&nbsp;</th>
                        </tr>
<?php
        
}
    }
    unset(
$useBgcolorOne);
?>
                    </table>
                </td>
            </tr>
        </table>
    </li>
<?php
}
$res PMA_mysql_query('SHOW VARIABLES LIKE "have_innodb";'$userlink);
if (
$res) {
    
$row PMA_mysql_fetch_row($res);
    if (!empty(
$row[1]) && $row[1] == 'YES') {
?>
    <br />
    <li>
        <!-- InnoDB Status -->
        <a href="./server_status.php?<?php echo $url_query?>&amp;innodbstatus=1">
            <b><?php echo $strInnodbStat?></b>
        </a>
    </li>
<?php
    
}
} else {
    unset(
$res);
}
?>
</ul>


<?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.0062 ]--