|
Server : Apache System : Linux server.mata-lashes.com 3.10.0-1160.90.1.el7.x86_64 #1 SMP Thu May 4 15:21:22 UTC 2023 x86_64 User : matalashes ( 1004) PHP Version : 8.1.29 Disable Function : NONE Directory : /proc/17567/root/usr/local/lsws/admin/html.6.3.4/service/ |
Upload File : |
<?php
require_once('../includes/auth.php');
$stats = new STATS();
$stats->parse_all();
$blocked_count = count($stats->blocked_ip);
$help_key = 'antiddos_blocked_ip';
$dhelp_item = DATTR_HELP::GetInstance()->GetItem($help_key);
$help = '  ' . $dhelp_item->render($help_key);
echo GUI::header();
?>
<table class="xtbl" width="100%" border="0" cellpadding="4" cellspacing="1">
<tr height="15"><td class="xtbl_title">Current Blocked IP List (Total <?php echo $blocked_count . ')' . $help; ?> </tr>
<tr class="xtbl_value"><td>
<?php
echo join(', ', $stats->blocked_ip);
?>
</td></tr>
</table>
<?php
echo GUI::footer();