We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 012fc21 commit be9b103Copy full SHA for be9b103
1 file changed
plugins/generic/enumeration.py
@@ -2148,6 +2148,7 @@ def searchColumn(self):
2148
foundCols = {}
2149
dbs = {}
2150
whereDbsQuery = ""
2151
+ whereTblsQuery = ""
2152
colList = conf.col.split(",")
2153
colCond = rootQuery.inband.condition
2154
dbCond = rootQuery.inband.condition2
@@ -2181,6 +2182,8 @@ def searchColumn(self):
2181
2182
whereDbsQuery = "".join(" AND %s != '%s'" % (dbCond, unsafeSQLIdentificatorNaming(db)) for db in self.excludeDbsList)
2183
infoMsg2 = "skipping system database%s '%s'" % ("s" if len(self.excludeDbsList) > 1 else "", ", ".join(db for db in self.excludeDbsList))
2184
logger.info(infoMsg2)
2185
+ else:
2186
+ infoMsg += " across all databases"
2187
2188
logger.info(infoMsg)
2189
0 commit comments