From 07cbb5c62c0f3819c58505f82f1b5f005dfa1b8e Mon Sep 17 00:00:00 2001 From: Yaro Kasear Date: Fri, 2 May 2025 09:27:24 -0500 Subject: [PATCH] Add debug print statement to display clients for each AP in deadpoint check --- listener.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/listener.py b/listener.py index 04c30e6..c36cf29 100755 --- a/listener.py +++ b/listener.py @@ -232,6 +232,8 @@ def channel_hopper(interface): time.sleep(CHANNEL_HOP_INTERVAL) def is_deadpoint(ap_bssid): + # For debuggibg purposes, pretty-print each AP's clients + print(f"[+] AP {ap_bssid} clients: {ap_clients[ap_bssid]}") return sum(ap_clients[ap_bssid].values()) < 2 # No meaningful client interaction # === Main ===