From c5ab6b005b29592b109389ba57cccdc04593fb38 Mon Sep 17 00:00:00 2001 From: ekultek Date: Fri, 24 Nov 2017 08:45:58 -0600 Subject: [PATCH] had t ocreate a disclaimer because someone was an idiot --- etc/checksum/md5sum.md5 | 2 +- lib/core/settings.py | 12 ++++++++++-- 2 files changed, 11 insertions(+), 3 deletions(-) diff --git a/etc/checksum/md5sum.md5 b/etc/checksum/md5sum.md5 index 871a5d3..909bd65 100644 --- a/etc/checksum/md5sum.md5 +++ b/etc/checksum/md5sum.md5 @@ -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 diff --git a/lib/core/settings.py b/lib/core/settings.py index ebf9c08..92bbc3a 100644 --- a/lib/core/settings.py +++ b/lib/core/settings.py @@ -46,7 +46,7 @@ CLONE = "https://github.com/ekultek/zeus-scanner.git" ISSUE_LINK = "https://github.com/ekultek/zeus-scanner/issues" # current version -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