mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-26 11:33:47 +03:00
minor bug fix
This commit is contained in:
parent
d46234e30c
commit
6f61fc04f1
|
@ -200,7 +200,7 @@ class Search:
|
||||||
if isinstance(values, basestring):
|
if isinstance(values, basestring):
|
||||||
values = [values]
|
values = [values]
|
||||||
for value in values:
|
for value in values:
|
||||||
newValues.append(["SQLite_%s" % METADB_SUFFIX, value])
|
newValues.append(["SQLite%s" % METADB_SUFFIX, value])
|
||||||
|
|
||||||
values = newValues
|
values = newValues
|
||||||
|
|
||||||
|
@ -259,7 +259,7 @@ class Search:
|
||||||
if tblConsider == "2":
|
if tblConsider == "2":
|
||||||
continue
|
continue
|
||||||
else:
|
else:
|
||||||
foundTbls["SQLite_%s" % METADB_SUFFIX] = []
|
foundTbls["SQLite%s" % METADB_SUFFIX] = []
|
||||||
|
|
||||||
for db in foundTbls.keys():
|
for db in foundTbls.keys():
|
||||||
db = safeSQLIdentificatorNaming(db)
|
db = safeSQLIdentificatorNaming(db)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user