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 d358949 commit 8179fd6Copy full SHA for 8179fd6
1 file changed
lib/controller/controller.py
@@ -198,6 +198,7 @@ def start():
198
initTargetEnv()
199
parseTargetUrl()
200
201
+ proceed = False
202
testSqlInj = False
203
204
if PLACE.GET in conf.parameters:
@@ -318,10 +319,15 @@ def start():
318
319
# TODO: consider the following line in __setRequestParams()
320
# __testableParameters = True
321
- if len(kb.tested) > 0 and kb.tested == conf.tech:
322
- testSqlInj = False
+ if len(kb.tested) > 0:
323
+ for t in conf.tech:
324
+ if t not in kb.tested:
325
+ proceed = True
326
+ break
327
+ else:
328
329
- if testSqlInj:
330
+ if proceed:
331
if not conf.string and not conf.regexp:
332
# NOTE: this is not needed anymore, leaving only to display
333
# a warning message to the user in case the page is not stable
0 commit comments