mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-22 17:46:37 +03:00
same fix as previous commit for blind techniques
This commit is contained in:
parent
b54ae107cc
commit
7f10b01265
|
@ -464,12 +464,17 @@ class Search:
|
|||
if db not in foundCols[column]:
|
||||
foundCols[column][db] = []
|
||||
|
||||
origDb = conf.db
|
||||
origTbl = conf.tbl
|
||||
|
||||
for column, dbData in foundCols.items():
|
||||
colQuery = "%s%s" % (colCond, colCondParam)
|
||||
colQuery = colQuery % column
|
||||
|
||||
for db in dbData:
|
||||
db = safeSQLIdentificatorNaming(db)
|
||||
conf.db = origDb
|
||||
conf.tbl = origTbl
|
||||
|
||||
infoMsg = "fetching number of tables containing column"
|
||||
if colConsider == "1":
|
||||
|
|
Loading…
Reference in New Issue
Block a user