mirror of
https://github.com/smittix/intercept.git
synced 2026-04-24 06:40:00 -07:00
Add ISMS Listening Station with GSM cell detection
- Add spectrum monitoring via rtl_power with configurable presets - Add OpenCelliD tower integration with Leaflet map display - Add grgsm_scanner integration for passive GSM cell detection (alpha) - Add rules engine for anomaly detection and findings - Add baseline recording and comparison system - Add setup.sh support for gr-gsm installation on Debian/Ubuntu Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
@@ -5052,3 +5052,190 @@ body::before {
|
||||
.preset-freq-btn:active {
|
||||
transform: scale(0.98);
|
||||
}
|
||||
|
||||
/* =============================================================================
|
||||
ISMS Listening Station Styles
|
||||
============================================================================= */
|
||||
|
||||
.isms-dashboard {
|
||||
padding: 16px;
|
||||
}
|
||||
|
||||
.isms-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(4, 1fr);
|
||||
gap: 12px;
|
||||
}
|
||||
|
||||
.isms-panel {
|
||||
background: var(--bg-card);
|
||||
border-radius: 8px;
|
||||
padding: 12px;
|
||||
border: 1px solid var(--border-color);
|
||||
}
|
||||
|
||||
.isms-panel-header {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin-bottom: 8px;
|
||||
font-size: 11px;
|
||||
color: var(--text-muted);
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 1px;
|
||||
}
|
||||
|
||||
.isms-info-banner {
|
||||
margin-bottom: 12px;
|
||||
padding: 8px 12px;
|
||||
background: rgba(0, 212, 255, 0.1);
|
||||
border: 1px solid rgba(0, 212, 255, 0.3);
|
||||
border-radius: 4px;
|
||||
font-size: 10px;
|
||||
color: var(--text-muted);
|
||||
}
|
||||
|
||||
/* ISMS Badges */
|
||||
.isms-badge {
|
||||
display: inline-block;
|
||||
padding: 2px 8px;
|
||||
border-radius: 4px;
|
||||
font-size: 9px;
|
||||
font-weight: bold;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
.isms-badge-high {
|
||||
background: rgba(255, 51, 102, 0.2);
|
||||
color: var(--accent-red);
|
||||
border: 1px solid rgba(255, 51, 102, 0.4);
|
||||
}
|
||||
|
||||
.isms-badge-warn {
|
||||
background: rgba(255, 170, 0, 0.2);
|
||||
color: var(--accent-orange);
|
||||
border: 1px solid rgba(255, 170, 0, 0.4);
|
||||
}
|
||||
|
||||
.isms-badge-info {
|
||||
background: rgba(0, 212, 255, 0.2);
|
||||
color: var(--accent-cyan);
|
||||
border: 1px solid rgba(0, 212, 255, 0.4);
|
||||
}
|
||||
|
||||
/* ISMS Band Meter */
|
||||
.isms-band-meter {
|
||||
text-align: center;
|
||||
min-width: 80px;
|
||||
}
|
||||
|
||||
.isms-band-meter .meter-bar {
|
||||
height: 60px;
|
||||
width: 20px;
|
||||
background: rgba(0, 0, 0, 0.5);
|
||||
border-radius: 4px;
|
||||
margin: 0 auto;
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.isms-band-meter .meter-fill {
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
width: 100%;
|
||||
background: linear-gradient(to top, var(--accent-green), var(--accent-cyan), var(--accent-orange));
|
||||
transition: height 0.3s;
|
||||
}
|
||||
|
||||
.isms-band-meter .meter-value {
|
||||
font-size: 11px;
|
||||
margin-top: 4px;
|
||||
font-family: 'JetBrains Mono', monospace;
|
||||
}
|
||||
|
||||
.isms-band-meter .meter-noise {
|
||||
font-size: 9px;
|
||||
color: var(--text-muted);
|
||||
}
|
||||
|
||||
/* ISMS Tower Map */
|
||||
#ismsTowerMap {
|
||||
height: 180px;
|
||||
background: rgba(0, 0, 0, 0.3);
|
||||
border-radius: 4px;
|
||||
}
|
||||
|
||||
#ismsTowerMap .leaflet-control-attribution {
|
||||
font-size: 8px;
|
||||
background: rgba(0, 0, 0, 0.6);
|
||||
color: var(--text-muted);
|
||||
}
|
||||
|
||||
.isms-user-marker {
|
||||
background: transparent;
|
||||
border: none;
|
||||
}
|
||||
|
||||
/* ISMS Finding Item */
|
||||
.isms-finding-item {
|
||||
padding: 8px;
|
||||
border-bottom: 1px solid var(--border-color);
|
||||
font-size: 11px;
|
||||
}
|
||||
|
||||
.isms-finding-item:last-child {
|
||||
border-bottom: none;
|
||||
}
|
||||
|
||||
/* ISMS Collapsible Panel */
|
||||
.isms-panel.collapsible .isms-panel-header.clickable {
|
||||
cursor: pointer;
|
||||
padding: 12px;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.isms-panel.collapsible .isms-panel-header.clickable:hover {
|
||||
background: rgba(0, 212, 255, 0.05);
|
||||
}
|
||||
|
||||
/* ISMS Start Button */
|
||||
#ismsStartBtn.running {
|
||||
background: linear-gradient(135deg, #ff3366, #ff6b6b);
|
||||
border-color: #ff3366;
|
||||
animation: pulse-glow 2s ease-in-out infinite;
|
||||
}
|
||||
|
||||
/* ISMS Recording Status */
|
||||
#ismsBaselineRecordingStatus {
|
||||
background: rgba(255, 100, 100, 0.1);
|
||||
border-radius: 4px;
|
||||
padding: 8px;
|
||||
font-size: 10px;
|
||||
color: var(--accent-red);
|
||||
animation: recording-blink 1s ease-in-out infinite;
|
||||
}
|
||||
|
||||
@keyframes recording-blink {
|
||||
0%, 100% { opacity: 1; }
|
||||
50% { opacity: 0.5; }
|
||||
}
|
||||
|
||||
/* ISMS Mode Content */
|
||||
#ismsMode.mode-content {
|
||||
display: none;
|
||||
}
|
||||
|
||||
#ismsMode.mode-content.active {
|
||||
display: block;
|
||||
}
|
||||
|
||||
/* Responsive ISMS Grid */
|
||||
@media (max-width: 1024px) {
|
||||
.isms-grid {
|
||||
grid-template-columns: repeat(2, 1fr);
|
||||
}
|
||||
|
||||
.isms-panel[style*="grid-column: span 4"] {
|
||||
grid-column: span 2 !important;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user