patched an issue where the selenium proxy was not working

This commit is contained in:
ekultek 2017-09-20 17:36:19 -05:00
parent 36259f3a12
commit 909c817b6e
2 changed files with 4 additions and 4 deletions

View file

@ -17,7 +17,7 @@ import bin.unzip_gecko
# clone link
CLONE = "https://github.com/ekultek/zeus-scanner.git"
# current version <major.minor.commit.patch ID>
VERSION = "1.0.13"
VERSION = "1.0.14.2e73"
# colors to output depending on the version
VERSION_TYPE_COLORS = {"dev": 33, "stable": 92, "other": 30}
# version string formatting

View file

@ -58,9 +58,9 @@ def get_urls(query, url, verbose=False, warning=True, user_agent=None, proxy=Non
proxy_type = proxy.keys()
proxy_to_use = Proxy({
"proxyType": ProxyType.MANUAL,
"httpProxy": proxy,
"ftpProxy": proxy,
"sslProxy": proxy,
"httpProxy": proxy[proxy_type[0]],
"ftpProxy": proxy[proxy_type[0]],
"sslProxy": proxy[proxy_type[0]],
"noProxy": ""
})
if verbose: