mirror of
https://github.com/Ekultek/Zeus-Scanner.git
synced 2026-03-11 08:55:51 +00:00
minor change to output the current URL before sqlmap scan
This commit is contained in:
parent
01d0f5856f
commit
b22180a82d
3 changed files with 4 additions and 4 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
|
@ -2,4 +2,4 @@ log/*
|
|||
geckodriver.log
|
||||
*.pyc
|
||||
.idea/*
|
||||
bin/executed
|
||||
bin/*
|
||||
|
|
@ -148,7 +148,7 @@ def sqlmap_scan_main(url, port=None, verbose=None, auto_search=False, opts=None,
|
|||
"current sqlmap scan ID: '{}'...".format(api_id), level=10
|
||||
))
|
||||
lib.settings.logger.info(lib.settings.set_color(
|
||||
"starting sqlmap scan..."
|
||||
"starting sqlmap scan on url: '{}'...".format(url)
|
||||
))
|
||||
if opts is not None:
|
||||
if verbose:
|
||||
|
|
|
|||
|
|
@ -16,8 +16,8 @@ import bin.unzip_gecko
|
|||
|
||||
# clone link
|
||||
CLONE = "https://github.com/ekultek/zeus-scanner.git"
|
||||
# current version
|
||||
VERSION = "1.0"
|
||||
# current version <major.minor.commit.patch ID>
|
||||
VERSION = "1.0.1"
|
||||
# colors to output depending on the version
|
||||
VERSION_TYPE_COLORS = {"dev": 33, "stable": 92, "other": 30}
|
||||
# version string formatting
|
||||
|
|
|
|||
Loading…
Reference in a new issue