Add visual rogue AP indicator for suspected evil twin detection

- Add rogueBssids Set to track all BSSIDs flagged as rogues
- Display red banner with pulsing animation on rogue network cards
- Apply red border and background tint to rogue AP cards
- Show prominent warning in selected device panel for rogue APs
- Change SSID color to red when viewing rogue AP details

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Smittix
2026-01-08 14:18:53 +00:00
parent cdaee3f62f
commit 81c5af474d
2 changed files with 42 additions and 2 deletions

View File

@@ -3040,8 +3040,25 @@ body::before {
padding: 2px 6px;
border-radius: 3px;
font-size: 9px;
}
/* Rogue AP Indicator */
.rogue-indicator {
background: linear-gradient(90deg, #ff0000, #cc0000);
color: #fff;
padding: 4px 8px;
margin: -10px -10px 8px -10px;
font-size: 10px;
font-weight: bold;
margin-left: 5px;
text-align: center;
text-transform: uppercase;
letter-spacing: 1px;
animation: rogue-pulse 1.5s infinite;
}
@keyframes rogue-pulse {
0%, 100% { opacity: 1; }
50% { opacity: 0.7; }
}
/* PMKID Capture */