mirror of
https://github.com/Ekultek/Zeus-Scanner.git
synced 2026-03-11 08:55:51 +00:00
patches issue where zeus will only install one geckodriver version if your version is under 54 (issue #108)
This commit is contained in:
parent
a7abcb58c0
commit
fddeb7b774
3 changed files with 6 additions and 5 deletions
|
|
@ -68,8 +68,9 @@ def config_gecko_version(browser_version):
|
|||
}
|
||||
major = browser_version[0]
|
||||
for key in version_specs.keys():
|
||||
if any(k == major for k in key):
|
||||
return version_specs[key]
|
||||
for num in key:
|
||||
if num == major:
|
||||
return version_specs[key]
|
||||
|
||||
|
||||
def check_os(current=platform.platform()):
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@ e6c13a69a5290cdb1a8e5e1c4dd19b7d ./requirements.txt
|
|||
75b485c7a5c6daa22a65794da4109ddc ./etc/dorks.txt
|
||||
8fc2e244d69f0a38c2d7cee8da211cbf ./etc/xss_payloads.txt
|
||||
d41d8cd98f00b204e9800998ecf8427e ./bin/__init__.py
|
||||
feea6218ad0b502f050542378d63cc65 ./bin/unzip_gecko.py
|
||||
f2f852c1d73ac75f3caff2c9fcd36ac5 ./bin/unzip_gecko.py
|
||||
9a3eea24ffb08eaa221eb3e951e9e7c2 ./lib/tamper_scripts/obfuscateordinal_encode.py
|
||||
10bf1bc4ef0287d31633148fab557e8a ./lib/tamper_scripts/uppercase_encode.py
|
||||
99f284510464fcec513b60cb8f47f8f0 ./lib/tamper_scripts/hex_encode.py
|
||||
|
|
@ -32,7 +32,7 @@ fc11145007c1c3f47cbda44ced93e73f ./lib/attacks/admin_panel_finder/__init__.py
|
|||
c5ebb0c56c9ae3b9a72a14e3f05afa16 ./lib/attacks/intel_me/__init__.py
|
||||
1faa2b5dfad6eb538bbfe42942d2a9da ./lib/core/errors.py
|
||||
d41d8cd98f00b204e9800998ecf8427e ./lib/core/__init__.py
|
||||
41698674b4f695db0dd7db61abf1161c ./lib/core/settings.py
|
||||
a7ca933b5fff483d26e0d30a12838100 ./lib/core/settings.py
|
||||
d41d8cd98f00b204e9800998ecf8427e ./var/google_search/__init__.py
|
||||
e5457ee2e54bb4f4f823367818694596 ./var/google_search/search.py
|
||||
d41d8cd98f00b204e9800998ecf8427e ./var/__init__.py
|
||||
|
|
|
|||
|
|
@ -24,7 +24,7 @@ except NameError:
|
|||
# clone link
|
||||
CLONE = "https://github.com/ekultek/zeus-scanner.git"
|
||||
# current version <major.minor.commit.patch ID>
|
||||
VERSION = "1.0.53"
|
||||
VERSION = "1.0.54.f2f8"
|
||||
# colors to output depending on the version
|
||||
VERSION_TYPE_COLORS = {"dev": 33, "stable": 92, "other": 30}
|
||||
# version string formatting
|
||||
|
|
|
|||
Loading…
Reference in a new issue