mirror of
https://github.com/smittix/intercept.git
synced 2026-04-25 07:10:00 -07:00
Backend: - New utils/wifi/ package with models, scanner, parsers, channel analyzer - Quick Scan mode using system tools (nmcli, iw, iwlist, airport) - Deep Scan mode using airodump-ng with monitor mode - Hidden SSID correlation engine - Channel utilization analysis with recommendations - v2 API endpoints at /wifi/v2/* with SSE streaming - TSCM integration updated to use new scanner (backwards compatible) Frontend: - WiFi mode controller (wifi.js) with dual-mode support - Channel utilization chart component (channel-chart.js) - Updated wifi.html template with scan mode tabs and export Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
20 lines
449 B
Python
20 lines
449 B
Python
"""
|
|
WiFi scan output parsers.
|
|
|
|
Each parser converts tool-specific output into WiFiObservation objects.
|
|
"""
|
|
|
|
from .airport import parse_airport_scan
|
|
from .nmcli import parse_nmcli_scan
|
|
from .iw import parse_iw_scan
|
|
from .iwlist import parse_iwlist_scan
|
|
from .airodump import parse_airodump_csv
|
|
|
|
__all__ = [
|
|
'parse_airport_scan',
|
|
'parse_nmcli_scan',
|
|
'parse_iw_scan',
|
|
'parse_iwlist_scan',
|
|
'parse_airodump_csv',
|
|
]
|