mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-01-24 08:14:24 +03:00
.. fix
This commit is contained in:
parent
d9af01d73d
commit
6c582343fe
|
@ -157,7 +157,7 @@ def columnExists(columnFile, regex=None):
|
|||
columns = filterListValue(columns, regex)
|
||||
|
||||
if conf.db and not conf.db.endswith(METADB_SUFFIX):
|
||||
table = "%s.%s" % (conf.db, conf.tbl)
|
||||
table = "%s%s%s" % (conf.db, '..' if Backend.getIdentifiedDbms() in (DBMS.MSSQL, DBMS.SYBASE) else '.', conf.tbl)
|
||||
else:
|
||||
table = conf.tbl
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user