mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-04 06:50:14 +00:00
Minor fixes
This commit is contained in:
parent
0e7f771be6
commit
97c06854a4
4 changed files with 13 additions and 13 deletions
|
|
@ -579,9 +579,9 @@ class Dump(object):
|
|||
|
||||
for column in dbColumnsDict.keys():
|
||||
if colConsider == "1":
|
||||
colConsiderStr = "s like '" + column + "' were"
|
||||
colConsiderStr = "s like '%s' were" % unsafeSQLIdentificatorNaming(column)
|
||||
else:
|
||||
colConsiderStr = " '%s' was" % column
|
||||
colConsiderStr = " '%s' was" % unsafeSQLIdentificatorNaming(column)
|
||||
|
||||
msg = "Column%s found in the " % colConsiderStr
|
||||
msg += "following databases:"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue