From e72fd08fb4985462123f3175cc831b4b50207c88 Mon Sep 17 00:00:00 2001 From: Casey Diemel <diemelcw@gmail.com> Date: Thu, 28 Nov 2019 14:39:15 -0500 Subject: [PATCH] added on_unfiltered_wifi_list Signed-off-by: Casey Diemel <diemelcw@gmail.com> --- pwnagotchi/plugins/default/example.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pwnagotchi/plugins/default/example.py b/pwnagotchi/plugins/default/example.py index 37eccb4..58fe448 100644 --- a/pwnagotchi/plugins/default/example.py +++ b/pwnagotchi/plugins/default/example.py @@ -122,6 +122,11 @@ class Example(plugins.Plugin): def on_wifi_update(self, agent, access_points): pass + # called when the agent refreshed an unfiltered access point list + # this list contains all access points that were detected BEFORE filtering + def on_unfiltered_ap_list(self, agent, access_points): + pass + # called when the agent is sending an association frame def on_association(self, agent, access_point): pass