Tried that? It's not exactly your error output, but maybe it helps:
Edit: Oh okay i think you did , as you were also posting on that forumThe current version of Wifizoo does not work with scapy's latest version (http://www.secdev.org/projects/scapy...apy-latest.zip), you'll get the following error when running wifizoo:
Traceback (most recent call last):
File "wifizoo.py", line 48, in
conf.verb = 0
NameError: name 'conf' is not defined
To fix this error do simply the following:
Look in wifizoo.py for the line that says 'import getopt' and after that add the following line:
from scapy.all import *
and now everything should work again.



