mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-07-11 19:13:12 +00:00
Fixes #3399
This commit is contained in:
parent
a02662f03f
commit
2e5edce8b9
3 changed files with 4 additions and 4 deletions
|
|
@ -505,7 +505,7 @@ def start():
|
|||
infoMsg = "skipping %s parameter '%s'" % (paramType, parameter)
|
||||
logger.info(infoMsg)
|
||||
|
||||
elif re.search(conf.csrfToken, parameter, re.I):
|
||||
elif conf.csrfToken and re.search(conf.csrfToken, parameter, re.I):
|
||||
testSqlInj = False
|
||||
|
||||
infoMsg = "skipping anti-CSRF token parameter '%s'" % parameter
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue