Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 03c8e7b commit e501b2aCopy full SHA for e501b2a
1 file changed
lib/core/common.py
@@ -576,6 +576,11 @@ def paramToDict(place, parameters=None):
576
test = readInput(message, default="N")
577
if test[0] not in ("y", "Y"):
578
raise SqlmapSilentQuitException
579
+ elif not _:
580
+ warnMsg = "provided value for parameter '%s' is empty. " % parameter
581
+ warnMsg += "Please, always use only valid parameter values "
582
+ warnMsg += "so sqlmap could be able to run properly"
583
+ logger.warn(warnMsg)
584
585
if conf.testParameter and not testableParameters:
586
paramStr = ", ".join(test for test in conf.testParameter)
0 commit comments