mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-04 14:55:40 +00:00
Fixes #2974
This commit is contained in:
parent
cd88caa0e7
commit
0c4b6c9978
3 changed files with 4 additions and 4 deletions
|
|
@ -651,7 +651,7 @@ def paramToDict(place, parameters=None):
|
|||
message = "it appears that provided value for %s parameter '%s' " % (place, parameter)
|
||||
message += "is JSON deserializable. Do you want to inject inside? [y/N] "
|
||||
|
||||
if not readInput(message, default='N', boolean=True):
|
||||
if readInput(message, default='N', boolean=True):
|
||||
del testableParameters[parameter]
|
||||
testableParameters.update(candidates)
|
||||
break
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue