From 710d5fb452e2aad7b71462e0170dfc25066c8e52 Mon Sep 17 00:00:00 2001 From: dadav <33197631+dadav@users.noreply.github.com> Date: Sat, 11 Apr 2020 10:14:23 +0200 Subject: [PATCH] addded on_config_changed --- handshakes-dl.py | 10 +++------- hashie.py | 13 ++----------- 2 files changed, 5 insertions(+), 18 deletions(-) diff --git a/handshakes-dl.py b/handshakes-dl.py index 71b6e0a..e1d0612 100644 --- a/handshakes-dl.py +++ b/handshakes-dl.py @@ -31,7 +31,7 @@ TEMPLATE = """ class HandshakesDL(plugins.Plugin): __author__ = 'me@sayakb.com' - __version__ = '0.1.0' + __version__ = '0.1.1' __license__ = 'GPL3' __description__ = 'Download handshake captures from web-ui.' @@ -41,12 +41,8 @@ class HandshakesDL(plugins.Plugin): def on_loaded(self): logging.info("[HandshakesDL] plugin loaded") - def on_ready(self, agent): - self.config = agent.config() - self.ready = True - - def on_internet_available(self, agent): - self.config = agent.config() + def on_config_changed(self, config): + self.config = config self.ready = True def on_webhook(self, path, request): diff --git a/hashie.py b/hashie.py index e50bc77..4ed9bfb 100644 --- a/hashie.py +++ b/hashie.py @@ -12,7 +12,7 @@ import pwnagotchi.ui.fonts as fonts class hashie(plugins.Plugin): __author__ = 'junohea.mail@gmail.com' - __version__ = '1.0.0' + __version__ = '1.0.1' __license__ = 'GPL3' __description__ = ''' Attempt to automatically convert pcaps to a crackable format. @@ -53,17 +53,8 @@ class hashie(plugins.Plugin): logging.info("[hashie] plugin loaded") self.lock = Lock() - # called when the plugin is loaded - def on_loaded(self): - pass - - # called when there's internet connectivity - def on_internet_available(self, agent): - pass - # called when everything is ready and the main loop is about to start - def on_ready(self, agent): - config = agent.config() + def on_config_changed(self, config): handshake_dir = config['bettercap']['handshakes'] if 'interval' not in self.options or not (self.status.newer_then_hours(self.options['interval'])):