mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-02-21 14:02:49 +03:00
Fix for an user reported bug (tbl can be None)
This commit is contained in:
parent
63d0e9bb12
commit
c2dce66a46
|
@ -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)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user