Ignore -1 channels, bug/crash fix, support newer tshark

This commit is contained in:
derv82
2016-01-01 02:04:10 -05:00
parent 746da03580
commit c5ffac75c5
4 changed files with 8 additions and 3 deletions

View File

@@ -195,6 +195,10 @@ class Airodump(object):
# Ignore empty/blank ESSIDs
continue
if target.channel == "-1":
# Ignore -1 channel
continue
targets.append(target)
return targets