Remove --strip option

Tried to make it work but alas, no dice.
This commit is contained in:
derv82
2017-05-15 01:24:50 -04:00
parent 7adcff07b0
commit a8d16d1b69
4 changed files with 19 additions and 5 deletions

View File

@@ -316,7 +316,8 @@ class Handshake(object):
cmd = [
'tshark',
'-r', self.capfile, # input file
'-R', 'wlan.fc.type_subtype == 0x08 || eapol', # filter
'-R', 'wlan.fc.type_subtype == 0x08 || wlan.fc.type_subtype == 0x05 || eapol', # filter
'-2', # tshark: -R without -2 is deprecated.
'-w', outfile # output file
]
proc = Process(cmd)