diff --git a/wifite.py b/wifite.py index 3fb72e8..65a7999 100755 --- a/wifite.py +++ b/wifite.py @@ -2340,7 +2340,7 @@ def has_handshake_tshark(self, target, capfile): # Call Tshark to return list of EAPOL packets in cap file. cmd = ['tshark', '-r', capfile, # Input file - '-R', 'eapol', # Filter (only EAPOL packets) + '-Y', 'eapol', # Filter (only EAPOL packets) '-n'] # Do not resolve names (MAC vendors) proc = Popen(cmd, stdout=PIPE, stderr=DN) proc.wait()