Handshake detection, various bug fixes.

This commit is contained in:
derv82
2015-05-30 05:35:36 -07:00
parent 1c99b74cf2
commit aebc38c631
9 changed files with 578 additions and 48 deletions

13
py/AttackWPS.py Normal file
View File

@@ -0,0 +1,13 @@
#!/usr/bin/python
from Attack import Attack
class AttackWPS(Attack):
def __init__(self, target):
super(AttackWPS, self).__init__(target)
def run(self):
raise Exception("TODO: Crack WPS")
if __name__ == '__main__':
pass