mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-03 22:31:34 +00:00
Fixes #5735
This commit is contained in:
parent
9a48a27593
commit
c1af880fb8
3 changed files with 5 additions and 5 deletions
|
|
@ -321,11 +321,11 @@ class Databases(object):
|
|||
values = [(dbs[0], _) for _ in values]
|
||||
|
||||
for db, table in filterPairValues(values):
|
||||
table = unArrayizeValue(table).strip()
|
||||
table = unArrayizeValue(table)
|
||||
|
||||
if not isNoneValue(table):
|
||||
db = safeSQLIdentificatorNaming(db)
|
||||
table = safeSQLIdentificatorNaming(table, True)
|
||||
table = safeSQLIdentificatorNaming(table, True).strip()
|
||||
|
||||
if conf.getComments:
|
||||
_ = queries[Backend.getIdentifiedDbms()].table_comment
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue