Started WEP attack support.

Fixing bugs in Airodump/Scanner.
This commit is contained in:
derv82
2015-05-29 23:16:20 -07:00
parent 03509d436e
commit 1c99b74cf2
8 changed files with 226 additions and 10 deletions

11
py/AttackWPA.py Normal file
View File

@@ -0,0 +1,11 @@
#!/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")