45 أسطر
364 B
HTML
45 أسطر
364 B
HTML
<html>
|
|
|
|
<head>
|
|
|
|
<title>Mini SIEM Dashboard</title>
|
|
|
|
<link rel="stylesheet" href="style.css">
|
|
|
|
</head>
|
|
|
|
|
|
<body>
|
|
|
|
|
|
<h1>Security Alerts</h1>
|
|
|
|
|
|
<table>
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th>IP</th>
|
|
<th>Attack</th>
|
|
<th>Severity</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
|
|
<tbody id="alerts"></tbody>
|
|
|
|
|
|
</table>
|
|
|
|
|
|
|
|
<script src="app.js"></script>
|
|
|
|
|
|
</body>
|
|
|
|
</html> |