httpimport
httpimport copied to clipboard
Proxy Support
HTTP/S Proxy Support might be useful in case a host cannot directly connect to the Web.
It could be implemented by just passing a proxy list to a Global Variable PROXY_LIST like follows:
import httpimport
httpimport.PROXY_LIST=[
('127.0.0.1', 8080), # Some Burp Installation?
('randomhttpproxy.org',80),
]