48 أسطر
1.7 KiB
HTML
48 أسطر
1.7 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="ar" dir="rtl">
|
|
<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: right; }
|
|
th { background-color: #334155; }
|
|
.CRITICAL { color: #ef4444; font-weight: bold; }
|
|
.HIGH { color: #f97316; font-weight: bold; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>🛡️ منصة غيمة — لوحة تنبيهات SIEM</h1>
|
|
<div class="card">
|
|
<h3>التنبيهات الأمنية المكتشفة</h3>
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th>مستوى الخطورة</th>
|
|
<th>نوع الهجوم</th>
|
|
<th>عنوان IP</th>
|
|
<th>التفاصيل</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>
|