We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 722afa0 commit 372ce6bCopy full SHA for 372ce6b
beaconify.py
@@ -17,7 +17,7 @@
17
18
class Beaconify(plugins.Plugin):
19
__author__ = 'Artur Oliveira'
20
- __version__ = '1.0.3'
+ __version__ = '1.0.4'
21
__license__ = 'GPL3'
22
__description__ = 'A plugin to send beacon frames more often and restarts pwngrid when it stops listening for other units\' beacons.'
23
@@ -88,6 +88,7 @@ def inner_func(obj):
88
time.sleep(obj.restart_pwngrid_time)
89
retries -= 1
90
logging.warning(f"[Beaconify] Failed to restart pwngrid too many times! The unit probably won't send or receive beacons until reboot.")
91
+ self.waiting_pwngrid = False
92
Thread(target=inner_func, args=(self,)).start()
93
94
0 commit comments