Airodump writes to csv every second (instead of every 5)
This commit is contained in:
@@ -58,7 +58,8 @@ class Airodump(object):
|
|||||||
'airodump-ng',
|
'airodump-ng',
|
||||||
self.interface,
|
self.interface,
|
||||||
'-a', # Only show associated clients
|
'-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:
|
if self.channel:
|
||||||
command.extend(['-c', str(self.channel)])
|
command.extend(['-c', str(self.channel)])
|
||||||
|
|||||||
Reference in New Issue
Block a user