mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-05-10 10:43:44 +03:00
Minor patch
This commit is contained in:
parent
a371f182ac
commit
b67f342975
|
@ -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)]
|
||||||
|
|
Loading…
Reference in New Issue
Block a user