From b0bd0342d70f6dae5723a3b1c5a0b730ede874cd Mon Sep 17 00:00:00 2001 From: derv82 Date: Sun, 14 May 2017 05:42:28 -0400 Subject: [PATCH] Airodump writes to csv every second (instead of every 5) --- py/Airodump.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/py/Airodump.py b/py/Airodump.py index 31deb2a..599a30e 100644 --- a/py/Airodump.py +++ b/py/Airodump.py @@ -58,7 +58,8 @@ class Airodump(object): 'airodump-ng', self.interface, '-a', # Only show associated clients - '-w', self.csv_file_prefix # Output file prefix + '-w', self.csv_file_prefix, # Output file prefix + '--write-interval', '1' # Write every second ] if self.channel: command.extend(['-c', str(self.channel)])