mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-25 11:03:47 +03:00
Minor fix
This commit is contained in:
parent
f11a640e99
commit
54d086f409
|
@ -90,7 +90,7 @@ def __findUnionCharCount(comment, place, parameter, value, prefix, suffix, where
|
|||
found = kb.orderByColumns or __orderByTechnique()
|
||||
if 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)
|
||||
return found
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user