addded on_config_changed

This commit is contained in:
dadav 2020-04-11 10:14:23 +02:00
parent e8d3628336
commit 710d5fb452
2 changed files with 5 additions and 18 deletions

View File

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

View File

@ -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'])):