diff --git a/builder/data/usr/bin/bettercap-launcher b/builder/data/usr/bin/bettercap-launcher index 2598a25..d2dec50 100755 --- a/builder/data/usr/bin/bettercap-launcher +++ b/builder/data/usr/bin/bettercap-launcher @@ -9,6 +9,12 @@ if is_crypted_mode; then done fi +# check if wifi driver is bugged +if ! check_brcm; then + reload_brcm + sleep 10 +fi + # start mon0 start_monitor_interface diff --git a/builder/data/usr/bin/pwnlib b/builder/data/usr/bin/pwnlib index cbf358c..15eb8ef 100755 --- a/builder/data/usr/bin/pwnlib +++ b/builder/data/usr/bin/pwnlib @@ -12,9 +12,23 @@ blink_led() { sleep 0.3 } +# check if brcm is stuck +check_brcm() { + if [[ "$(journalctl -b0 -k --no-pager | tail -10 | grep -c 'brcmf_cfg80211_nexmon_set_channel.*Set Channel failed')" -ge 3 ]]; then + return 1 + fi + return 0 +} + +# reload mod +reload_brcm() { + rmmod brcmfmac + modprobe brcmfmac +} + # starts mon0 start_monitor_interface() { - iw phy phy0 interface add mon0 type monitor && ifconfig mon0 up + iw phy "$(iw phy | head -1 | cut -d" " -f2)" interface add mon0 type monitor && ifconfig mon0 up } # stops mon0 diff --git a/pwnagotchi/agent.py b/pwnagotchi/agent.py index bd88479..d24b09e 100644 --- a/pwnagotchi/agent.py +++ b/pwnagotchi/agent.py @@ -364,7 +364,7 @@ class Agent(Client, Automata, AsyncAdvertiser, AsyncTrainer): def start_event_polling(self): # start a thread and pass in the mainloop - _thread.start_new_thread(self._event_poller, (asyncio.new_event_loop(),)) + _thread.start_new_thread(self._event_poller, (asyncio.get_event_loop(),)) def is_module_running(self, module): diff --git a/pwnagotchi/plugins/default/watchdog.py b/pwnagotchi/plugins/default/watchdog.py new file mode 100644 index 0000000..a4e32c9 --- /dev/null +++ b/pwnagotchi/plugins/default/watchdog.py @@ -0,0 +1,43 @@ +import os +import logging +import re +import subprocess +from io import TextIOWrapper +from time import sleep +from threading import Lock +from pwnagotchi import plugins + + +class Watchdog(plugins.Plugin): + __author__ = '33197631+dadav@users.noreply.github.com' + __version__ = '0.1.0' + __license__ = 'GPL3' + __description__ = 'Restart pwnagotchi when blindbug is detected.' + + def __init__(self): + self.options = dict() + self.lock = Lock() + self.pattern = re.compile(r'brcmf_cfg80211_nexmon_set_channel.*?Set Channel failed') + + def on_loaded(self): + """ + Gets called when the plugin gets loaded + """ + logging.info("Watchdog plugin loaded.") + + def on_epoch(self, agent, epoch, epoch_data): + if self.lock.locked(): + return + with self.lock: + # get last 10 lines + last_lines = ''.join(list(TextIOWrapper(subprocess.Popen(['journalctl','-n10','-k'], + stdout=subprocess.PIPE).stdout))[-10:]) + if len(self.pattern.findall(last_lines)) >= 3: + display = agent.view() + display.set('status', 'Blind-Bug detected. Restarting bettercap.') + display.update(force=True) + logging.info('[WATCHDOG] Blind-Bug detected. Restarting.') + mode_file = '/root/.pwnagotchi-manual' if agent.mode == 'manual' else '/root/.pwnagotchi-auto' + os.system(f"touch {mode_file}") + os.system('systemctl restart bettercap') + sleep(10) diff --git a/pwnagotchi/ui/web/templates/plugins.html b/pwnagotchi/ui/web/templates/plugins.html index 5835c18..35b0be5 100644 --- a/pwnagotchi/ui/web/templates/plugins.html +++ b/pwnagotchi/ui/web/templates/plugins.html @@ -5,6 +5,37 @@ Plugins {% endblock %} +{% block styles %} + {{ super() }} + +{% endblock %} + {% block script %} $(function(){ $('input[type=checkbox]').change(function(e) { @@ -28,10 +59,18 @@ $(function(){ {% block content %}