From 1c6bd41bee4fb4cb52fd968f9721052750c08bf4 Mon Sep 17 00:00:00 2001 From: Jeroen Oudshoorn Date: Fri, 1 Sep 2023 21:50:33 +0200 Subject: [PATCH] V2.2.1 Signed-off-by: Jeroen Oudshoorn Signed-off-by: Jeroen Oudshoorn --- pwnagotchi/plugins/default/fix_brcmf_plugin.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/pwnagotchi/plugins/default/fix_brcmf_plugin.py b/pwnagotchi/plugins/default/fix_brcmf_plugin.py index 4dac3c00..cfefc100 100644 --- a/pwnagotchi/plugins/default/fix_brcmf_plugin.py +++ b/pwnagotchi/plugins/default/fix_brcmf_plugin.py @@ -259,11 +259,9 @@ class Fix_BRCMF(plugins.Plugin): self._status = "rl" time.sleep(10 + 4 * tries) # give it some time for wlan device to stabilize, or whatever - # success! now make the mon0 + # success! now make the wlan0mon try: - cmd_output = subprocess.check_output( - "monstart", - shell=True) + cmd_output = subprocess.check_output("monstart", shell=True) self.logPrintView("info", "[FixBRCMF interface add wlan0mon] worked #%d: %s" % (tries, cmd_output)) self._status = "up"