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

10 lines
177 B
Python

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