From 5757f311b2689ee2c1b56f8506ea2869ea74ec9d Mon Sep 17 00:00:00 2001 From: ekultek Date: Fri, 24 Nov 2017 07:01:59 -0600 Subject: [PATCH] patch for an issue where the script to start sqlmap would not launch, had the wrong script name which is what caused the issue (issue #163) --- lib/core/settings.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lib/core/settings.py b/lib/core/settings.py index 9ee93b9..ebf9c08 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.29".format(PATCH_ID) +VERSION = "1.2.30.{}".format(PATCH_ID) # colors to output depending on the version VERSION_TYPE_COLORS = {"dev": 33, "stable": 92, "other": 30} @@ -103,7 +103,7 @@ FIX_PROGRAM_INSTALL_PATH = "{}/etc/scripts/fix_pie.sh".format(os.getcwd()) CLEANUP_TOOL_PATH = "{}/etc/scripts/cleanup.sh".format(os.getcwd()) # path to tool to launch sqlmap API -LAUNCH_SQLMAP_API_TOOL = "{}/etc/scripts/launch_sqlmap_api.sh".format(os.getcwd()) +LAUNCH_SQLMAP_API_TOOL = "{}/etc/scripts/launch_sqlmap.sh".format(os.getcwd()) # path to nmap installer NMAP_INSTALLER_TOOL = "{}/etc/scripts/install_nmap.sh".format(os.getcwd()) @@ -198,6 +198,7 @@ COOKIE_FILENAME = "{}-cookie.log" # filename for found headers log HEADERS_FILENAME = "{}-headers.json" +# filename for extracted IP ban URLs EXTRACTED_URL_FILENAME = "extracted-url-{}.log" # filename for the URL log