mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-12-06 20:51:31 +00:00
Fix for an user reported bug (tbl can be None)
This commit is contained in:
@@ -430,7 +430,7 @@ class Search:
|
|||||||
|
|
||||||
for db, tbl in filterPairValues(values):
|
for db, tbl in filterPairValues(values):
|
||||||
db = safeSQLIdentificatorNaming(db)
|
db = safeSQLIdentificatorNaming(db)
|
||||||
tbls = tbl.split(",")
|
tbls = tbl.split(",") if not isNoneValue(tbl) else []
|
||||||
|
|
||||||
for tbl in tbls:
|
for tbl in tbls:
|
||||||
tbl = safeSQLIdentificatorNaming(tbl, True)
|
tbl = safeSQLIdentificatorNaming(tbl, True)
|
||||||
|
|||||||
Reference in New Issue
Block a user