From 6023e1628c35bacd237ff4bee64def995a52a2eb Mon Sep 17 00:00:00 2001 From: ekultek Date: Fri, 8 Sep 2017 14:26:57 -0500 Subject: [PATCH] bumped version number, edited saying --- lib/settings.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/settings.py b/lib/settings.py index 2f899b9..09e2dc5 100644 --- a/lib/settings.py +++ b/lib/settings.py @@ -17,7 +17,7 @@ import bin.unzip_gecko # clone link CLONE = "https://github.com/ekultek/zeus-scanner.git" # current version -VERSION = "1.0.2.e25" +VERSION = "1.0.3.24e" # colors to output depending on the version VERSION_TYPE_COLORS = {"dev": 33, "stable": 92, "other": 30} # version string formatting @@ -27,8 +27,8 @@ elif VERSION.count(".") <= 2: VERSION_STRING = "\033[92mv{}\033[0m(\033[{}m\033[1mdev\033[0m)".format(VERSION, VERSION_TYPE_COLORS["dev"]) else: VERSION_STRING = "\033[92mv{}\033[0m(\033[{}m\033[1mrevision\033[0m)".format(VERSION, VERSION_TYPE_COLORS["other"]) -# our saying, because everyone loves Google -SAYING = "Advanced Dork Scan..." +# zeus-scanners saying +SAYING = "Advanced Dork Searching..." # sexy banner BANNER = """\033[36m __ __________ __ @@ -37,7 +37,7 @@ BANNER = """\033[36m \ \ /_____/ / /\ ___/| | /\___ \ /_____/ / / \_\ /_______ \___ >____//____ > /_/ \/ \/ \/ {} -\t{}\n\t\t{}{}\033[0m""".format(VERSION_STRING, CLONE, " " * 5, SAYING) +\t{}\n\t\t{}\033[0m""".format(VERSION_STRING, CLONE, SAYING) # default user agent if another one isn't given DEFAULT_USER_AGENT = "Zeus-Scanner(v{})::Python->v{}.{}".format( VERSION, sys.version_info[0], sys.version_info[1]