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)