From 2bbcc36f2aea0cc427e23ccc968d7dff492c18e6 Mon Sep 17 00:00:00 2001 From: Casey Diemel Date: Sun, 13 Oct 2019 13:57:45 -0400 Subject: [PATCH] added unfiltered ap list call back Signed-off-by: Casey Diemel --- pwnagotchi/agent.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pwnagotchi/agent.py b/pwnagotchi/agent.py index 41680df7..f8c8ff9a 100644 --- a/pwnagotchi/agent.py +++ b/pwnagotchi/agent.py @@ -190,6 +190,7 @@ class Agent(Client, AsyncAdvertiser, AsyncTrainer): aps = [] try: s = self.session() + plugins.on("unfiltered_ap_list", s['wifi']['aps']) for ap in s['wifi']['aps']: if ap['hostname'] not in whitelist: if self._filter_included(ap):