mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-02-10 16:40:36 +03:00
minor bug fix
This commit is contained in:
parent
012fc21b49
commit
be9b103b51
|
@ -2148,6 +2148,7 @@ class Enumeration:
|
||||||
foundCols = {}
|
foundCols = {}
|
||||||
dbs = {}
|
dbs = {}
|
||||||
whereDbsQuery = ""
|
whereDbsQuery = ""
|
||||||
|
whereTblsQuery = ""
|
||||||
colList = conf.col.split(",")
|
colList = conf.col.split(",")
|
||||||
colCond = rootQuery.inband.condition
|
colCond = rootQuery.inband.condition
|
||||||
dbCond = rootQuery.inband.condition2
|
dbCond = rootQuery.inband.condition2
|
||||||
|
@ -2181,6 +2182,8 @@ class Enumeration:
|
||||||
whereDbsQuery = "".join(" AND %s != '%s'" % (dbCond, unsafeSQLIdentificatorNaming(db)) for db in self.excludeDbsList)
|
whereDbsQuery = "".join(" AND %s != '%s'" % (dbCond, unsafeSQLIdentificatorNaming(db)) for db in self.excludeDbsList)
|
||||||
infoMsg2 = "skipping system database%s '%s'" % ("s" if len(self.excludeDbsList) > 1 else "", ", ".join(db for db in self.excludeDbsList))
|
infoMsg2 = "skipping system database%s '%s'" % ("s" if len(self.excludeDbsList) > 1 else "", ", ".join(db for db in self.excludeDbsList))
|
||||||
logger.info(infoMsg2)
|
logger.info(infoMsg2)
|
||||||
|
else:
|
||||||
|
infoMsg += " across all databases"
|
||||||
|
|
||||||
logger.info(infoMsg)
|
logger.info(infoMsg)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user