PHP Classes

File: source/application/views/panel/model/attack.php

Recommend this page to a friend!
  Classes of ask sa sa   Rimau waf   source/application/views/panel/model/attack.php   Download  
File: source/application/views/panel/model/attack.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: Rimau waf
Application to configure Web server module options
Author: By
Last change:
Date: 1 year ago
Size: 713 bytes
 

Contents

Class file image Download

        <table id="listhost" class="table table-striped table-bordered" width="100%" cellspacing="0">
        <thead>
            <tr>
               
                <th>Date</th>
                <th>Time</th>
                <th>Source</th>
                <th>Dest</th>
                <th>Message</th>
            </tr>
        </thead>
        <tbody>
            <?php

foreach ($attack as $a) {
?>
<tr>
                <td><?=$a['date']?></td>
                <td><?=$a['time']?></td>
                <td><?=$a['source_ip']?></td>
                <td><?=$a['dest_ip']?></td>
                <td><?=$a['message']?></td>
            </tr>
<?php
   
/*
    echo $a['date'];
    echo $a['time'];
    echo $a['source_ip'];
    echo $a['source_port'];
    echo $a['dest_ip'];
    echo $a['dest_port'];
    echo $a['message'];
    echo $a['detailed_message'];
   
    echo "<br/><br/>";
     *
     */
}

?>
</tbody>
        </table>