Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 621ae58

Browse files
committed
Fix for an Issue #263
1 parent c0796b4 commit 621ae58

1 file changed

Lines changed: 2 additions & 4 deletions

File tree

lib/techniques/brute/use.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -155,11 +155,9 @@ def columnExists(columnFile, regex=None):
155155
columns.extend(__addPageTextWords())
156156
columns = filterListValue(columns, regex)
157157

158+
table = safeSQLIdentificatorNaming(conf.tbl, True)
158159
if conf.db and METADB_SUFFIX not in conf.db:
159-
table = "%s%s%s" % (conf.db, '..' if Backend.getIdentifiedDbms() in (DBMS.MSSQL, DBMS.SYBASE) else '.', conf.tbl)
160-
else:
161-
table = conf.tbl
162-
table = safeSQLIdentificatorNaming(table, True)
160+
table = "%s.%s" % (safeSQLIdentificatorNaming(conf.db), table)
163161

164162
kb.threadContinue = True
165163
kb.bruteMode = True

0 commit comments

Comments
 (0)