Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 28576bf

Browse files
committed
Minor output update
1 parent c395958 commit 28576bf

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

lib/core/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
from lib.core.revision import getRevisionNumber
2020

2121
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
22-
VERSION = "1.0.5.54"
22+
VERSION = "1.0.5.55"
2323
REVISION = getRevisionNumber()
2424
STABLE = VERSION.count('.') <= 2
2525
VERSION_STRING = "sqlmap/%s#%s" % (VERSION, "stable" if STABLE else "dev")

lib/core/target.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -214,9 +214,9 @@ def process(match, repl):
214214

215215
if re.search(URI_INJECTABLE_REGEX, conf.url, re.I) and not any(place in conf.parameters for place in (PLACE.GET, PLACE.POST)) and not kb.postHint and not CUSTOM_INJECTION_MARK_CHAR in (conf.data or "") and conf.url.startswith("http"):
216216
warnMsg = "you've provided target URL without any GET "
217-
warnMsg += "parameters (e.g. www.site.com/article.php?id=1) "
217+
warnMsg += "parameters (e.g. 'http://www.site.com/article.php?id=1') "
218218
warnMsg += "and without providing any POST parameters "
219-
warnMsg += "through --data option"
219+
warnMsg += "through option '--data'"
220220
logger.warn(warnMsg)
221221

222222
message = "do you want to try URI injections "

0 commit comments

Comments
 (0)