mirror of
https://github.com/sqlmapproject/sqlmap
synced 2025-12-06 16:32:23 +01:00
Minor check for problematic injections
This commit is contained in:
parent
c78a9cd156
commit
c7ef9429ae
1 changed files with 4 additions and 0 deletions
|
|
@ -782,6 +782,10 @@ def checkFalsePositives(injection):
|
|||
retVal = None
|
||||
break
|
||||
|
||||
elif checkBooleanExpression("%d %d" % (randInt3, randInt2)):
|
||||
retVal = None
|
||||
break
|
||||
|
||||
if retVal is None:
|
||||
warnMsg = "false positive or unexploitable injection point detected"
|
||||
logger.warn(warnMsg)
|
||||
|
|
|
|||
Loading…
Reference in a new issue