mirror of
https://github.com/sqlmapproject/sqlmap
synced 2025-12-06 16:32:23 +01:00
Fix for an Issue #597
This commit is contained in:
parent
bc29bf6481
commit
ab36e5a2f0
1 changed files with 1 additions and 1 deletions
|
|
@ -281,7 +281,7 @@ class Databases:
|
|||
|
||||
for db, table in filterPairValues(values):
|
||||
db = safeSQLIdentificatorNaming(db)
|
||||
table = safeSQLIdentificatorNaming(table, True)
|
||||
table = safeSQLIdentificatorNaming(unArrayizeValue(table), True)
|
||||
|
||||
if db not in kb.data.cachedTables:
|
||||
kb.data.cachedTables[db] = [table]
|
||||
|
|
|
|||
Loading…
Reference in a new issue