From 93e7f3a9798f5c453d8c7ce42dfc72fbf26a37fc Mon Sep 17 00:00:00 2001 From: Conny Brunnkvist Date: Thu, 25 May 2023 18:47:31 +0700 Subject: [PATCH] Allow `airodump-ng` to exit & get reaped Attempts to fix #335. --- wifite/tools/airodump.py | 1 + 1 file changed, 1 insertion(+) diff --git a/wifite/tools/airodump.py b/wifite/tools/airodump.py index 0092af117..164f0dbb6 100755 --- a/wifite/tools/airodump.py +++ b/wifite/tools/airodump.py @@ -69,6 +69,7 @@ def __enter__(self): command = [ 'airodump-ng', self.interface, + '--background', '1', # Force "background mode" since we rely on csv instead of stdout '-a', # Only show associated clients '-w', self.csv_file_prefix, # Output file prefix '--write-interval', '1' # Write every second