Add deauth/disassoc detection — firmware capture, coordinator ingestion, Alerts tab with burst detection

This commit is contained in:
bot
2026-04-03 22:24:25 +03:00
parent cbef4143ee
commit fbf5b5c738
7 changed files with 426 additions and 23 deletions
+20
View File
@@ -379,6 +379,26 @@ thead th.sort-active::after { content: ' ' attr(data-arrow); }
margin-bottom: 6px;
}
/* ── Alerts ── */
.alerts-summary {
display: flex;
gap: 16px;
flex-wrap: wrap;
padding: 10px 14px;
background: var(--bg-panel);
border: 1px solid var(--border);
font-size: 11px;
color: var(--text-dim);
}
.alerts-summary .stat { display: flex; flex-direction: column; gap: 2px; }
.alerts-summary .stat .val { font-size: 18px; font-weight: 500; color: var(--text); }
.alerts-summary .stat.alert .val { color: #e74c3c; }
.burst-row { background: rgba(231,76,60,0.07); }
.burst-row:hover { background: rgba(231,76,60,0.14) !important; }
.burst-multi { color: #e74c3c; font-weight: 500; }
td.deauth-type { color: #e74c3c; }
td.disassoc-type { color: var(--orange); }
/* ── Scrollbar ── */
::-webkit-scrollbar { width: 5px; height: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }