From 7fbdcb310a522b8e948a60cf023ef4b0007e83d8 Mon Sep 17 00:00:00 2001 From: Yaro Kasear Date: Wed, 16 Apr 2025 10:18:34 -0500 Subject: [PATCH] Add debug print statements for SSID to BSSID mappings in analyze_pcap --- enrich.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/enrich.py b/enrich.py index 8da6012..d0c44a7 100755 --- a/enrich.py +++ b/enrich.py @@ -352,6 +352,9 @@ def analyze_pcap(pcapng_path, start_ts, end_ts, ap_bssid, ap_channel): except: continue + print(f"[DEBUG] SSID to BSSIDs: {ssid_to_bssids}") + print(f"[DEBUG] BSSID to SSID: {bssid_to_ssid}") + clients_on_ap = get_clients_on_ap(filtered_packets, ap_bssid) clients_on_channel = get_clients_on_channel(filtered_packets, ap_channel, ap_bssid) aps_on_channel = get_aps_on_channel(filtered_packets, ap_channel)