mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-12-06 04:31:30 +00:00
Adding a small warning message (related to the Issue #407)
This commit is contained in:
@@ -671,6 +671,13 @@ def checkFalsePositives(injection):
|
||||
warnMsg = "false positive or unexploitable injection point detected"
|
||||
logger.warn(warnMsg)
|
||||
|
||||
if PAYLOAD.TECHNIQUE.BOOLEAN in injection.data:
|
||||
if all(_.__name__ != "between" for _ in kb.tamperFunctions):
|
||||
warnMsg = "there is a possibility that the character '>' is "
|
||||
warnMsg += "filtered by the back-end server. You can try "
|
||||
warnMsg += "to rerun with '--tamper=between'"
|
||||
logger.warn(warnMsg)
|
||||
|
||||
kb.injection = popValue()
|
||||
|
||||
return retVal
|
||||
|
||||
Reference in New Issue
Block a user