We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e8c0843 commit a4110b4Copy full SHA for a4110b4
wifite/tools/tshark.py
@@ -116,9 +116,9 @@ def bssid_essid_pairs(capfile, bssid):
116
command = [
117
'tshark',
118
'-r', capfile, # Path to cap file
119
- # Extract beacon frames
120
- '-Y', 'wlan.fc.type_subtype == 0x08 || wlan.fc.type_subtype == 0x05',
121
'-n', # Don't resolve addresses
+ # Extract beacon frames
+ '-Y', '"wlan.fc.type_subtype == 0x08 || wlan.fc.type_subtype == 0x05"',
122
]
123
tshark = Process(command, devnull=False)
124
0 commit comments