48 أسطر
1.6 KiB
HTML
48 أسطر
1.6 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Ghaymah Mini SIEM Dashboard</title>
|
|
<style>
|
|
body { font-family: sans-serif; background-color: #0f172a; color: #f8fafc; padding: 20px; }
|
|
.card { background: #1e293b; padding: 20px; border-radius: 8px; margin-bottom: 20px; }
|
|
h1 { color: #38bdf8; }
|
|
table { width: 100%; border-collapse: collapse; margin-top: 10px; }
|
|
th, td { padding: 12px; border: 1px solid #334155; text-align: left; }
|
|
th { background-color: #334155; }
|
|
.CRITICAL { color: #ef4444; font-weight: bold; }
|
|
.HIGH { color: #f97316; font-weight: bold; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>🛡️ Ghaymah Cloud — Mini SIEM Alert Dashboard</h1>
|
|
<div class="card">
|
|
<h3>Detected Security Alerts</h3>
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th>Severity</th>
|
|
<th>Attack Type</th>
|
|
<th>IP Address</th>
|
|
<th>Details</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<td class="CRITICAL">CRITICAL</td>
|
|
<td>Web Attack (SQLi)</td>
|
|
<td>103.15.28.1</td>
|
|
<td>SQL Injection pattern detected: UNION SELECT</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="HIGH">HIGH</td>
|
|
<td>Brute Force Detected</td>
|
|
<td>45.33.32.156</td>
|
|
<td>Multiple failed logins (3 times)</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</body>
|
|
</html>
|