Files
wifite2/py/AttackWPA.py
derv82 1c99b74cf2 Started WEP attack support.
Fixing bugs in Airodump/Scanner.
2015-05-29 23:16:20 -07:00

12 lines
216 B
Python

#!/usr/bin/python
from Attack import Attack
class AttackWPA(Attack):
def __init__(self, target):
super(AttackWPA, self).__init__(target)
def run(self):
raise Exception("TODO: Crack WPA")