Confirmed WEP replay attack works & cracks.

Still a long ways to go!
This commit is contained in:
derv82
2015-05-31 10:58:09 -07:00
parent 35de5ea8a6
commit 5528fbfbac
6 changed files with 120 additions and 27 deletions

12
py/CrackResultWEP.py Normal file
View File

@@ -0,0 +1,12 @@
#!/usr/bin/python
import time
class CrackResultWEP(object):
def __init__(self, bssid, essid, hex_key, ascii_key):
self.bssid = bssid
self.essid = essid
self.hex_key = hex_key
self.ascii_key = ascii_key
self.time = time.time()