Files
wifite2/py/CrackResultWEP.py
derv82 5528fbfbac Confirmed WEP replay attack works & cracks.
Still a long ways to go!
2015-05-31 10:58:09 -07:00

13 lines
288 B
Python

#!/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()