From c726779f6e961a0a105ebaffae463663ba761e52 Mon Sep 17 00:00:00 2001 From: dadav <33197631+dadav@users.noreply.github.com> Date: Sun, 19 Apr 2020 16:36:26 +0200 Subject: [PATCH] only go back 5 mins --- builder/data/usr/bin/pwnlib | 2 +- pwnagotchi/plugins/default/watchdog.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/builder/data/usr/bin/pwnlib b/builder/data/usr/bin/pwnlib index 75d313e..685297e 100755 --- a/builder/data/usr/bin/pwnlib +++ b/builder/data/usr/bin/pwnlib @@ -14,7 +14,7 @@ blink_led() { # check if brcm is stuck check_brcm() { - if [[ "$(journalctl -n10 -k | grep -c 'brcmf_cfg80211_nexmon_set_channel.*Set Channel failed')" -ge 5 ]]; then + if [[ "$(journalctl -n10 -k --since '5 minutes ago' | grep -c 'brcmf_cfg80211_nexmon_set_channel.*Set Channel failed')" -ge 5 ]]; then return 1 fi return 0 diff --git a/pwnagotchi/plugins/default/watchdog.py b/pwnagotchi/plugins/default/watchdog.py index d6de60c..410338c 100644 --- a/pwnagotchi/plugins/default/watchdog.py +++ b/pwnagotchi/plugins/default/watchdog.py @@ -24,7 +24,7 @@ class Watchdog(plugins.Plugin): def on_epoch(self, agent, epoch, epoch_data): # get last 10 lines - last_lines = ''.join(list(TextIOWrapper(subprocess.Popen(['journalctl','-n10','-k'], + last_lines = ''.join(list(TextIOWrapper(subprocess.Popen(['journalctl','-n10','-k', '--since', '"5 minutes ago"'], stdout=subprocess.PIPE).stdout))[-10:]) if len(self.pattern.findall(last_lines)) >= 5: display = agent.view()