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 70e87d9 commit c76d740Copy full SHA for c76d740
1 file changed
lib/controller/controller.py
@@ -357,7 +357,8 @@ def start():
357
warnMsg += "injectable"
358
logger.warn(warnMsg)
359
360
- if len(kb.injections) == 0 and not kb.injection.place and not kb.injection.parameter:
+ if (len(kb.injections) == 0 or len(kb.injections) == 1 and kb.injections[0].parameter is None) \
361
+ and not kb.injection.place and not kb.injection.parameter:
362
errMsg = "all parameters are not injectable, try "
363
errMsg += "a higher --level"
364
raise sqlmapNotVulnerableException, errMsg
0 commit comments