mirror of
https://github.com/sqlmapproject/sqlmap
synced 2025-12-22 08:13:34 +01:00
Fix for an Issue #772
This commit is contained in:
parent
20d75cc52e
commit
b31e141012
1 changed files with 4 additions and 1 deletions
|
|
@ -1071,7 +1071,10 @@ def checkWaf():
|
|||
conf.parameters[PLACE.GET] = "" if not conf.parameters.get(PLACE.GET) else conf.parameters[PLACE.GET] + "&"
|
||||
conf.parameters[PLACE.GET] += "%s=%d %s" % (randomStr(), randomInt(), IDS_WAF_CHECK_PAYLOAD)
|
||||
|
||||
falseResult = Request.queryPage()
|
||||
try:
|
||||
falseResult = Request.queryPage()
|
||||
except SqlmapConnectionException:
|
||||
falseResult = None
|
||||
|
||||
if not falseResult:
|
||||
retVal = True
|
||||
|
|
|
|||
Loading…
Reference in a new issue