mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-07-11 19:13:12 +00:00
Fixes #1833
This commit is contained in:
parent
6928dae956
commit
c797129956
2 changed files with 2 additions and 2 deletions
|
|
@ -463,7 +463,7 @@ def start():
|
|||
infoMsg = "skipping randomizing %s parameter '%s'" % (paramType, parameter)
|
||||
logger.info(infoMsg)
|
||||
|
||||
elif parameter in conf.skip:
|
||||
elif parameter in conf.skip or kb.postHint and parameter.split(' ')[-1] in conf.skip:
|
||||
testSqlInj = False
|
||||
|
||||
infoMsg = "skipping %s parameter '%s'" % (paramType, parameter)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue