Airodump writes to csv every second (instead of every 5)

This commit is contained in:
derv82
2017-05-14 05:42:28 -04:00
parent 842144129a
commit b0bd0342d7

View File

@@ -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)])