mirror of
https://github.com/Ekultek/Zeus-Scanner.git
synced 2026-03-11 08:55:51 +00:00
had t ocreate a disclaimer because someone was an idiot
This commit is contained in:
parent
d38732ecf2
commit
c5ab6b005b
2 changed files with 11 additions and 3 deletions
|
|
@ -71,7 +71,7 @@ fa40d9681c7c3024bd50ad12ef231d6d ./lib/attacks/nmap_scan/__init__.py
|
|||
097ddbb1444de0c09535d02265152cf1 ./lib/core/common.py
|
||||
1faa2b5dfad6eb538bbfe42942d2a9da ./lib/core/errors.py
|
||||
d41d8cd98f00b204e9800998ecf8427e ./lib/core/__init__.py
|
||||
1a5140b3e6415d89efa60923cffd6040 ./lib/core/settings.py
|
||||
aa7bc32b895b1888df1eefde3c5944cb ./lib/core/settings.py
|
||||
10950ee27df3186646eeead8cb7f53a2 ./var/search/selenium_search.py
|
||||
7a1d9976db3e7d2923898c3065b9ca33 ./var/search/pgp_search.py
|
||||
d41d8cd98f00b204e9800998ecf8427e ./var/__init__.py
|
||||
|
|
|
|||
|
|
@ -46,7 +46,7 @@ CLONE = "https://github.com/ekultek/zeus-scanner.git"
|
|||
ISSUE_LINK = "https://github.com/ekultek/zeus-scanner/issues"
|
||||
|
||||
# current version <major.minor.commit.patch ID>
|
||||
VERSION = "1.2.30.{}".format(PATCH_ID)
|
||||
VERSION = "1.2.31".format(PATCH_ID)
|
||||
|
||||
# colors to output depending on the version
|
||||
VERSION_TYPE_COLORS = {"dev": 33, "stable": 92, "other": 30}
|
||||
|
|
@ -62,6 +62,14 @@ else:
|
|||
# zeus-scanners saying
|
||||
SAYING = "Advanced Reconnaissance..."
|
||||
|
||||
# i had to create a banner because something not so good happened...
|
||||
DISCLAIMER = (
|
||||
"[!] legal disclaimer: Usage of Zeus for exploiting, blackmailing, or attacking targets without "
|
||||
"mutual consent is illegal. It is the end users responsibility to obey all laws, regulations, and "
|
||||
"rules set forth by their state, country, or place of origin. Zeus developers take no responsibility "
|
||||
"for any misuse or damage caused by the use of this program."
|
||||
)
|
||||
|
||||
# sexy banner
|
||||
BANNER = """\033[36m
|
||||
__ __________ __
|
||||
|
|
@ -70,7 +78,7 @@ BANNER = """\033[36m
|
|||
\ \ /_____/ / /\ ___/| | /\___ \ /_____/ / /
|
||||
\_\ /_______ \___ >____//____ > /_/
|
||||
\/ \/ \/ {}
|
||||
\t{}\n\t\t{}\033[0m""".format(VERSION_STRING, CLONE, SAYING)
|
||||
\t{}\n\t\t{}\033[0m\n\n\n{}""".format(VERSION_STRING, CLONE, SAYING, DISCLAIMER)
|
||||
|
||||
# default user agent if another one isn't given
|
||||
# reference for best practices: https://docs.developer.amazonservices.com/en_US/dev_guide/DG_UserAgentHeader.html
|
||||
|
|
|
|||
Loading…
Reference in a new issue