voiper icon indicating copy to clipboard operation
voiper copied to clipboard

library import issue

Open Inf0Junki3 opened this issue 8 years ago • 0 comments

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... :)

Inf0Junki3 avatar Mar 09 '16 15:03 Inf0Junki3