mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-02-17 03:50:42 +03:00
Adding a small warning message (related to the Issue #407)
This commit is contained in:
parent
42cbd94fa4
commit
0bbbfc2eac
|
@ -671,6 +671,13 @@ def checkFalsePositives(injection):
|
||||||
warnMsg = "false positive or unexploitable injection point detected"
|
warnMsg = "false positive or unexploitable injection point detected"
|
||||||
logger.warn(warnMsg)
|
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()
|
kb.injection = popValue()
|
||||||
|
|
||||||
return retVal
|
return retVal
|
||||||
|
|
Loading…
Reference in New Issue
Block a user