12 lines
216 B
Python
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")
|
|
|