mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-06-20 14:40:36 +00:00
Minor fix
This commit is contained in:
parent
195c4bec34
commit
b67ea8f294
3 changed files with 6 additions and 4 deletions
|
|
@ -310,7 +310,9 @@ def columnExists(columnFile, regex=None):
|
|||
else:
|
||||
columns[column] = "non-numeric"
|
||||
|
||||
kb.data.cachedColumns[conf.db] = {table: columns}
|
||||
if conf.db not in kb.data.cachedColumns:
|
||||
kb.data.cachedColumns[conf.db] = {}
|
||||
kb.data.cachedColumns[conf.db][table] = columns
|
||||
|
||||
for _ in ((conf.db, table, item[0], item[1]) for item in columns.items()):
|
||||
if _ not in kb.brute.columns:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue