mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-07-15 10:42:27 +03:00
Minor bug fix
This commit is contained in:
parent
54f6673609
commit
10ef2b5de8
|
@ -160,7 +160,7 @@ def checkSqlInjection(place, parameter, value):
|
||||||
clauseMatch = True
|
clauseMatch = True
|
||||||
break
|
break
|
||||||
|
|
||||||
if clause != [ 0 ] and injection.clause and not clauseMatch:
|
if clause != [ 0 ] and injection.clause and injection.clause != [ 0 ] and not clauseMatch:
|
||||||
debugMsg = "skipping test '%s' because the clauses " % title
|
debugMsg = "skipping test '%s' because the clauses " % title
|
||||||
debugMsg += "differs from the clause already identified"
|
debugMsg += "differs from the clause already identified"
|
||||||
logger.debug(debugMsg)
|
logger.debug(debugMsg)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user