mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-02-03 13:14:13 +03:00
minor bug fix
This commit is contained in:
parent
012fc21b49
commit
be9b103b51
|
@ -2148,6 +2148,7 @@ class Enumeration:
|
|||
foundCols = {}
|
||||
dbs = {}
|
||||
whereDbsQuery = ""
|
||||
whereTblsQuery = ""
|
||||
colList = conf.col.split(",")
|
||||
colCond = rootQuery.inband.condition
|
||||
dbCond = rootQuery.inband.condition2
|
||||
|
@ -2181,6 +2182,8 @@ class Enumeration:
|
|||
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))
|
||||
logger.info(infoMsg2)
|
||||
else:
|
||||
infoMsg += " across all databases"
|
||||
|
||||
logger.info(infoMsg)
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user