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

9
py/Attack.py Normal file
View File

@@ -0,0 +1,9 @@
#!/usr/bin/python
class Attack(object):
def __init__(self, target):
self.target = target
def run(self):
raise Exception("Unimplemented method: run")