httpimport icon indicating copy to clipboard operation
httpimport copied to clipboard

Proxy Support

Open operatorequals opened this issue 6 years ago • 0 comments

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),
 ]

operatorequals avatar Sep 14 '19 23:09 operatorequals