mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-04 14:55:40 +00:00
some fixes
This commit is contained in:
parent
6b1d5a0ab8
commit
d27afaed7e
4 changed files with 13 additions and 8 deletions
|
|
@ -66,7 +66,7 @@ def tableExists(tableFile, regex=None):
|
|||
while kb.threadContinue:
|
||||
kb.locks.countLock.acquire()
|
||||
if threadData.shared.count < threadData.shared.limit:
|
||||
table = safeSQLIdentificatorNaming(tables[threadData.shared.count])
|
||||
table = safeSQLIdentificatorNaming(tables[threadData.shared.count], True)
|
||||
threadData.shared.count += 1
|
||||
kb.locks.countLock.release()
|
||||
else:
|
||||
|
|
@ -137,7 +137,7 @@ def columnExists(columnFile, regex=None):
|
|||
table = "%s%s%s" % (conf.db, '..' if Backend.getIdentifiedDbms() in (DBMS.MSSQL, DBMS.SYBASE) else '.', conf.tbl)
|
||||
else:
|
||||
table = conf.tbl
|
||||
table = safeSQLIdentificatorNaming(table)
|
||||
table = safeSQLIdentificatorNaming(table, True)
|
||||
|
||||
infoMsg = "checking column existence using items from '%s'" % columnFile
|
||||
logger.info(infoMsg)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue