WPA handshake capture and cracking almost setup

This commit is contained in:
derv82
2015-06-01 00:30:02 -07:00
parent 50538168e2
commit 625642fee7
8 changed files with 189 additions and 19 deletions

View File

@@ -59,15 +59,22 @@ class Handshake(object):
if not self.bssid or not self.essid:
self.divine_essid_and_bssid()
if self.tshark_handshakes():
if len(self.tshark_handshakes()) > 0:
return True
if self.cowpatty_handshakes():
if len(self.cowpatty_handshakes()) > 0:
return True
if self.pyrit_handshakes():
if len(self.pyrit_handshakes()) > 0:
return True
# XXX: Disabling aircrack check since I don't think it's reliable.
'''
if len(self.aircrack_handshakes()) > 0:
return True
'''
return False
def tshark_bssid_essid_pairs(self):
'''