mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-22 17:46:37 +03:00
Language fix (in lots of cases wrong statement 'unable to retrieve columns for any table in database' was reported)
This commit is contained in:
parent
5477c9f7ba
commit
344ef9af7d
|
@ -662,8 +662,9 @@ class Databases:
|
|||
kb.data.cachedColumns[safeSQLIdentificatorNaming(conf.db)] = table
|
||||
|
||||
if not kb.data.cachedColumns:
|
||||
errMsg = "unable to retrieve the columns for any "
|
||||
errMsg += "table in database '%s'" % unsafeSQLIdentificatorNaming(conf.db)
|
||||
errMsg = "unable to retrieve column names for "
|
||||
errMsg += ("table '%s' " % tblList[0]) if len(tblList) == 1 else "any table "
|
||||
errMsg += "in database '%s'" % unsafeSQLIdentificatorNaming(conf.db)
|
||||
logger.error(errMsg)
|
||||
|
||||
if bruteForce is None:
|
||||
|
|
Loading…
Reference in New Issue
Block a user