mirror of
https://github.com/smittix/intercept.git
synced 2026-04-24 22:59:59 -07:00
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:
@@ -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 */
|
||||
|
||||
Reference in New Issue
Block a user