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 20d75cc commit b31e141Copy full SHA for b31e141
1 file changed
lib/controller/checks.py
@@ -1071,7 +1071,10 @@ def checkWaf():
1071
conf.parameters[PLACE.GET] = "" if not conf.parameters.get(PLACE.GET) else conf.parameters[PLACE.GET] + "&"
1072
conf.parameters[PLACE.GET] += "%s=%d %s" % (randomStr(), randomInt(), IDS_WAF_CHECK_PAYLOAD)
1073
1074
- falseResult = Request.queryPage()
+ try:
1075
+ falseResult = Request.queryPage()
1076
+ except SqlmapConnectionException:
1077
+ falseResult = None
1078
1079
if not falseResult:
1080
retVal = True
0 commit comments