mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-26 03:23:48 +03:00
minor nag fix
This commit is contained in:
parent
40971aca94
commit
48c20a62ac
|
@ -131,14 +131,6 @@ def __unionPosition(comment, place, parameter, value, prefix, suffix, count, whe
|
||||||
removeReflectiveValues(listToStrValue(headers.headers if headers else None), \
|
removeReflectiveValues(listToStrValue(headers.headers if headers else None), \
|
||||||
payload, True) or "")
|
payload, True) or "")
|
||||||
|
|
||||||
unionErrorCase = kb.errorIsNone and wasLastRequestDBMSError()
|
|
||||||
|
|
||||||
if unionErrorCase:
|
|
||||||
warnMsg = "combined UNION/ERROR SQL injection case found on "
|
|
||||||
warnMsg += "column %d. sqlmap will try to find another " % (position + 1)
|
|
||||||
warnMsg += "column with better characteristics"
|
|
||||||
logger.warn(warnMsg)
|
|
||||||
|
|
||||||
if content and phrase in content:
|
if content and phrase in content:
|
||||||
validPayload = payload
|
validPayload = payload
|
||||||
vector = (position, count, comment, prefix, suffix, kb.uChar, where)
|
vector = (position, count, comment, prefix, suffix, kb.uChar, where)
|
||||||
|
@ -161,7 +153,14 @@ def __unionPosition(comment, place, parameter, value, prefix, suffix, count, whe
|
||||||
if content and ((phrase in content and phrase2 not in content) or (phrase not in content and phrase2 in content)):
|
if content and ((phrase in content and phrase2 not in content) or (phrase not in content and phrase2 in content)):
|
||||||
vector = (position, count, comment, prefix, suffix, kb.uChar, PAYLOAD.WHERE.NEGATIVE)
|
vector = (position, count, comment, prefix, suffix, kb.uChar, PAYLOAD.WHERE.NEGATIVE)
|
||||||
|
|
||||||
if not unionErrorCase:
|
unionErrorCase = kb.errorIsNone and wasLastRequestDBMSError()
|
||||||
|
|
||||||
|
if unionErrorCase:
|
||||||
|
warnMsg = "combined UNION/ERROR SQL injection case found on "
|
||||||
|
warnMsg += "column %d. sqlmap will try to find another " % (position + 1)
|
||||||
|
warnMsg += "column with better characteristics"
|
||||||
|
logger.warn(warnMsg)
|
||||||
|
else:
|
||||||
break
|
break
|
||||||
|
|
||||||
return validPayload, vector
|
return validPayload, vector
|
||||||
|
|
Loading…
Reference in New Issue
Block a user