mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-12-16 20:59:02 +00:00
Fix for an Issue #263
This commit is contained in:
@@ -155,11 +155,9 @@ def columnExists(columnFile, regex=None):
|
|||||||
columns.extend(__addPageTextWords())
|
columns.extend(__addPageTextWords())
|
||||||
columns = filterListValue(columns, regex)
|
columns = filterListValue(columns, regex)
|
||||||
|
|
||||||
|
table = safeSQLIdentificatorNaming(conf.tbl, True)
|
||||||
if conf.db and METADB_SUFFIX not in conf.db:
|
if conf.db and METADB_SUFFIX not in conf.db:
|
||||||
table = "%s%s%s" % (conf.db, '..' if Backend.getIdentifiedDbms() in (DBMS.MSSQL, DBMS.SYBASE) else '.', conf.tbl)
|
table = "%s.%s" % (safeSQLIdentificatorNaming(conf.db), table)
|
||||||
else:
|
|
||||||
table = conf.tbl
|
|
||||||
table = safeSQLIdentificatorNaming(table, True)
|
|
||||||
|
|
||||||
kb.threadContinue = True
|
kb.threadContinue = True
|
||||||
kb.bruteMode = True
|
kb.bruteMode = True
|
||||||
|
|||||||
Reference in New Issue
Block a user