mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-12-06 12:41:30 +00:00
Minor fix
This commit is contained in:
@@ -90,7 +90,7 @@ def __findUnionCharCount(comment, place, parameter, value, prefix, suffix, where
|
|||||||
found = kb.orderByColumns or __orderByTechnique()
|
found = kb.orderByColumns or __orderByTechnique()
|
||||||
if found:
|
if found:
|
||||||
kb.orderByColumns = found
|
kb.orderByColumns = found
|
||||||
infoMsg = "target url appears to have %d columns in query" % found
|
infoMsg = "target url appears to have %d column%s in query" % (found, 's' if found > 1 else "")
|
||||||
singleTimeLogMessage(infoMsg)
|
singleTimeLogMessage(infoMsg)
|
||||||
return found
|
return found
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user