mirror of
https://github.com/Ekultek/Zeus-Scanner.git
synced 2026-03-11 08:55:51 +00:00
edited the default user agent so it will reflect the best practices of user agent strings (reference https://docs.developer.amazonservices.com/en_US/dev_guide/DG_UserAgentHeader.html)
This commit is contained in:
parent
75f6b4f519
commit
0c8d4f9bf7
2 changed files with 6 additions and 4 deletions
|
|
@ -43,7 +43,7 @@ f27322b9716e1a2b0b0b0487f3149474 ./lib/attacks/whois_lookup/whois.py
|
||||||
f746d2867f493104a78d0540cf50c03f ./lib/attacks/intel_me/__init__.py
|
f746d2867f493104a78d0540cf50c03f ./lib/attacks/intel_me/__init__.py
|
||||||
1faa2b5dfad6eb538bbfe42942d2a9da ./lib/core/errors.py
|
1faa2b5dfad6eb538bbfe42942d2a9da ./lib/core/errors.py
|
||||||
d41d8cd98f00b204e9800998ecf8427e ./lib/core/__init__.py
|
d41d8cd98f00b204e9800998ecf8427e ./lib/core/__init__.py
|
||||||
e55e818edff971d82f89e4dbfec1760f ./lib/core/settings.py
|
8255b986984e7b069907548ec7bc2478 ./lib/core/settings.py
|
||||||
d41d8cd98f00b204e9800998ecf8427e ./var/google_search/__init__.py
|
d41d8cd98f00b204e9800998ecf8427e ./var/google_search/__init__.py
|
||||||
b92ee17da90b17a0abb4e07e24fca3e1 ./var/google_search/search.py
|
b92ee17da90b17a0abb4e07e24fca3e1 ./var/google_search/search.py
|
||||||
d41d8cd98f00b204e9800998ecf8427e ./var/__init__.py
|
d41d8cd98f00b204e9800998ecf8427e ./var/__init__.py
|
||||||
|
|
|
||||||
|
|
@ -10,6 +10,7 @@ import difflib
|
||||||
import logging
|
import logging
|
||||||
import string
|
import string
|
||||||
import random
|
import random
|
||||||
|
import platform
|
||||||
import subprocess
|
import subprocess
|
||||||
|
|
||||||
try:
|
try:
|
||||||
|
|
@ -37,7 +38,7 @@ PATCH_ID = str(subprocess.check_output(["git", "rev-parse", "origin/master"]))[:
|
||||||
# clone link
|
# clone link
|
||||||
CLONE = "https://github.com/ekultek/zeus-scanner.git"
|
CLONE = "https://github.com/ekultek/zeus-scanner.git"
|
||||||
# current version <major.minor.commit.patch ID>
|
# current version <major.minor.commit.patch ID>
|
||||||
VERSION = "1.1.3".format(PATCH_ID)
|
VERSION = "1.1.4".format(PATCH_ID)
|
||||||
# colors to output depending on the version
|
# colors to output depending on the version
|
||||||
VERSION_TYPE_COLORS = {"dev": 33, "stable": 92, "other": 30}
|
VERSION_TYPE_COLORS = {"dev": 33, "stable": 92, "other": 30}
|
||||||
# version string formatting
|
# version string formatting
|
||||||
|
|
@ -59,8 +60,9 @@ BANNER = """\033[36m
|
||||||
\/ \/ \/ {}
|
\/ \/ \/ {}
|
||||||
\t{}\n\t\t{}\033[0m""".format(VERSION_STRING, CLONE, SAYING)
|
\t{}\n\t\t{}\033[0m""".format(VERSION_STRING, CLONE, SAYING)
|
||||||
# default user agent if another one isn't given
|
# default user agent if another one isn't given
|
||||||
DEFAULT_USER_AGENT = "Zeus-Scanner(v{})::Python->v{}.{}".format(
|
# reference for best practices: https://docs.developer.amazonservices.com/en_US/dev_guide/DG_UserAgentHeader.html
|
||||||
VERSION, sys.version_info[0], sys.version_info[1]
|
DEFAULT_USER_AGENT = "Zeus-Scanner/{} (Language=Python/{}; Platform={})".format(
|
||||||
|
VERSION, sys.version.split(" ")[0], platform.platform().split("-")[0]
|
||||||
)
|
)
|
||||||
# regex to find GET params in a URL, IE php?id=
|
# regex to find GET params in a URL, IE php?id=
|
||||||
URL_QUERY_REGEX = re.compile(r"(.*)[?|#](.*){1}\=(.*)")
|
URL_QUERY_REGEX = re.compile(r"(.*)[?|#](.*){1}\=(.*)")
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue