mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-12-06 20:51:31 +00:00
minor bug fix
This commit is contained in:
@@ -200,7 +200,7 @@ class Search:
|
||||
if isinstance(values, basestring):
|
||||
values = [values]
|
||||
for value in values:
|
||||
newValues.append(["SQLite_%s" % METADB_SUFFIX, value])
|
||||
newValues.append(["SQLite%s" % METADB_SUFFIX, value])
|
||||
|
||||
values = newValues
|
||||
|
||||
@@ -259,7 +259,7 @@ class Search:
|
||||
if tblConsider == "2":
|
||||
continue
|
||||
else:
|
||||
foundTbls["SQLite_%s" % METADB_SUFFIX] = []
|
||||
foundTbls["SQLite%s" % METADB_SUFFIX] = []
|
||||
|
||||
for db in foundTbls.keys():
|
||||
db = safeSQLIdentificatorNaming(db)
|
||||
|
||||
Reference in New Issue
Block a user