Merge pull request #669 from cdiemel/master

added on_unfiltered_wifi_list
This commit is contained in:
evilsocket 2019-11-29 15:45:43 +01:00 committed by GitHub
commit 9b594f7fb2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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