mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-12-06 20:51:31 +00:00
Minor patch
This commit is contained in:
@@ -476,7 +476,7 @@ class Agent(object):
|
|||||||
"""
|
"""
|
||||||
|
|
||||||
retVal = field
|
retVal = field
|
||||||
if conf.db in table:
|
if conf.db and table and conf.db in table:
|
||||||
table = table.split(conf.db)[-1].strip('.')
|
table = table.split(conf.db)[-1].strip('.')
|
||||||
try:
|
try:
|
||||||
columns = kb.data.cachedColumns[safeSQLIdentificatorNaming(conf.db)][safeSQLIdentificatorNaming(table, True)]
|
columns = kb.data.cachedColumns[safeSQLIdentificatorNaming(conf.db)][safeSQLIdentificatorNaming(table, True)]
|
||||||
|
|||||||
Reference in New Issue
Block a user