mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-02-16 19:40:37 +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):
|
||||
db = safeSQLIdentificatorNaming(db)
|
||||
tbls = tbl.split(",")
|
||||
tbls = tbl.split(",") if not isNoneValue(tbl) else []
|
||||
|
||||
for tbl in tbls:
|
||||
tbl = safeSQLIdentificatorNaming(tbl, True)
|
||||
|
|
Loading…
Reference in New Issue
Block a user