voiper
voiper copied to clipboard
library import issue
Hi gremwell,
Been using your patched version of voiper and noticed that there is a small issue with importing the "sip" module in fuzzer/fuzzer_parents.py. My theory is that this is because there is a naming conflict between the "requests" module in sulley and the "requests" library for HTTP. If, like me, you have the latter installed, then you have problems importing sip.
I wrote a small work-around, using imp:
#from requests import sip <-- canned this due to error import imp sip = imp.load_source("sip", "sulley/requests/sip.py")
Dunno if this is useful to you, thought I'd bring it up in case it is... :)