mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-01-23 15:54:24 +03:00
Minor patch
This commit is contained in:
parent
03c8e7b7a2
commit
e501b2a80b
|
@ -576,6 +576,11 @@ def paramToDict(place, parameters=None):
|
|||
test = readInput(message, default="N")
|
||||
if test[0] not in ("y", "Y"):
|
||||
raise SqlmapSilentQuitException
|
||||
elif not _:
|
||||
warnMsg = "provided value for parameter '%s' is empty. " % parameter
|
||||
warnMsg += "Please, always use only valid parameter values "
|
||||
warnMsg += "so sqlmap could be able to run properly"
|
||||
logger.warn(warnMsg)
|
||||
|
||||
if conf.testParameter and not testableParameters:
|
||||
paramStr = ", ".join(test for test in conf.testParameter)
|
||||
|
|
Loading…
Reference in New Issue
Block a user