Skip to content

Commit

Permalink
patch for an issue where the script to start sqlmap would not launch,…
Browse files Browse the repository at this point in the history
… had the wrong script name which is what caused the issue (issue #163)
  • Loading branch information
ekultek committed Nov 24, 2017
1 parent 6f62049 commit 5757f31
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions lib/core/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
ISSUE_LINK = "https://github.com/ekultek/zeus-scanner/issues"

# current version <major.minor.commit.patch ID>
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}
Expand Down Expand Up @@ -103,7 +103,7 @@
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())
Expand Down Expand Up @@ -198,6 +198,7 @@
# 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
Expand Down

0 comments on commit 5757f31

Please sign in to comment.