mirror of
https://github.com/sqlmapproject/sqlmap
synced 2025-12-06 16:32:23 +01:00
Minor fix
This commit is contained in:
parent
f11a640e99
commit
54d086f409
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue