mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-05-14 01:16:59 +00:00
Fixes #3656
This commit is contained in:
parent
36cb4faf4d
commit
aaa83a31d4
5 changed files with 20 additions and 6 deletions
|
|
@ -36,6 +36,7 @@ from lib.core.common import popValue
|
|||
from lib.core.common import pushValue
|
||||
from lib.core.common import randomStr
|
||||
from lib.core.common import readInput
|
||||
from lib.core.common import removePostHintPrefix
|
||||
from lib.core.common import safeCSValue
|
||||
from lib.core.common import showHttpErrorCodes
|
||||
from lib.core.common import urlencode
|
||||
|
|
@ -497,7 +498,7 @@ def start():
|
|||
infoMsg = "skipping previously processed %s parameter '%s'" % (paramType, parameter)
|
||||
logger.info(infoMsg)
|
||||
|
||||
elif parameter in conf.testParameter:
|
||||
elif any(_ in conf.testParameter for _ in (parameter, removePostHintPrefix(parameter))):
|
||||
pass
|
||||
|
||||
elif parameter in conf.rParam:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue