2010-03-23 01:57:57 +03:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
"""
|
|
|
|
$Id$
|
|
|
|
|
2012-01-11 18:59:46 +04:00
|
|
|
Copyright (c) 2006-2012 sqlmap developers (http://www.sqlmap.org/)
|
2010-10-15 03:18:29 +04:00
|
|
|
See the file 'doc/COPYING' for copying permission
|
2010-03-23 01:57:57 +03:00
|
|
|
"""
|
|
|
|
|
2010-05-17 00:46:17 +04:00
|
|
|
from lib.core.agent import agent
|
2010-12-22 21:55:50 +03:00
|
|
|
from lib.core.common import arrayizeValue
|
2011-01-28 19:36:09 +03:00
|
|
|
from lib.core.common import Backend
|
2012-02-16 18:42:28 +04:00
|
|
|
from lib.core.common import getLimitRange
|
2012-01-07 23:30:35 +04:00
|
|
|
from lib.core.common import isInferenceAvailable
|
2011-05-26 12:17:21 +04:00
|
|
|
from lib.core.common import isNoneValue
|
2010-12-18 00:45:20 +03:00
|
|
|
from lib.core.common import isNumPosStrValue
|
2011-01-12 04:13:32 +03:00
|
|
|
from lib.core.common import isTechniqueAvailable
|
2011-03-30 01:54:15 +04:00
|
|
|
from lib.core.common import safeSQLIdentificatorNaming
|
|
|
|
from lib.core.common import unsafeSQLIdentificatorNaming
|
2010-03-23 01:57:57 +03:00
|
|
|
from lib.core.data import conf
|
|
|
|
from lib.core.data import kb
|
|
|
|
from lib.core.data import logger
|
|
|
|
from lib.core.data import queries
|
2012-02-29 18:36:23 +04:00
|
|
|
from lib.core.enums import CHARSET_TYPE
|
2010-12-10 16:04:36 +03:00
|
|
|
from lib.core.enums import EXPECTED
|
2011-01-15 13:14:05 +03:00
|
|
|
from lib.core.enums import PAYLOAD
|
2010-03-23 01:57:57 +03:00
|
|
|
from lib.core.exception import sqlmapNoneDataException
|
2012-02-16 18:42:28 +04:00
|
|
|
from lib.core.settings import CURRENT_DB
|
2010-03-23 01:57:57 +03:00
|
|
|
from lib.request import inject
|
|
|
|
|
|
|
|
from plugins.generic.enumeration import Enumeration as GenericEnumeration
|
|
|
|
|
|
|
|
class Enumeration(GenericEnumeration):
|
|
|
|
def __init__(self):
|
2011-01-14 14:55:20 +03:00
|
|
|
GenericEnumeration.__init__(self)
|
2010-03-23 01:57:57 +03:00
|
|
|
|
2010-11-08 15:45:23 +03:00
|
|
|
def getPrivileges(self, *args):
|
2011-02-10 17:24:04 +03:00
|
|
|
warnMsg = "on Microsoft SQL Server it is not possible to fetch "
|
|
|
|
warnMsg += "database users privileges, sqlmap will check whether "
|
|
|
|
warnMsg += "or not the database users are database administrators"
|
2010-03-23 01:57:57 +03:00
|
|
|
logger.warn(warnMsg)
|
|
|
|
|
2011-02-10 17:24:04 +03:00
|
|
|
users = []
|
|
|
|
areAdmins = set()
|
|
|
|
|
|
|
|
if conf.user:
|
|
|
|
users = [ conf.user ]
|
|
|
|
elif not len(kb.data.cachedUsers):
|
|
|
|
users = self.getUsers()
|
|
|
|
else:
|
|
|
|
users = kb.data.cachedUsers
|
|
|
|
|
|
|
|
for user in users:
|
|
|
|
if user is None:
|
|
|
|
continue
|
|
|
|
|
|
|
|
isDba = self.isDba(user)
|
|
|
|
|
|
|
|
if isDba is True:
|
|
|
|
areAdmins.add(user)
|
|
|
|
|
|
|
|
kb.data.cachedUsersPrivileges[user] = None
|
|
|
|
|
|
|
|
return ( kb.data.cachedUsersPrivileges, areAdmins )
|
2010-03-23 01:57:57 +03:00
|
|
|
|
|
|
|
def getTables(self):
|
2011-05-01 02:05:02 +04:00
|
|
|
if len(kb.data.cachedTables) > 0:
|
|
|
|
return kb.data.cachedTables
|
|
|
|
|
|
|
|
self.forceDbmsEnum()
|
|
|
|
|
2012-02-16 18:42:28 +04:00
|
|
|
if conf.db == CURRENT_DB:
|
2011-05-01 02:05:02 +04:00
|
|
|
conf.db = self.getCurrentDb()
|
|
|
|
|
2010-03-23 01:57:57 +03:00
|
|
|
if conf.db:
|
2011-05-01 02:05:02 +04:00
|
|
|
dbs = conf.db.split(",")
|
|
|
|
else:
|
|
|
|
dbs = self.getDbs()
|
|
|
|
|
|
|
|
for db in dbs:
|
|
|
|
dbs[dbs.index(db)] = safeSQLIdentificatorNaming(db)
|
|
|
|
|
2011-07-30 17:01:37 +04:00
|
|
|
dbs = filter(None, dbs)
|
|
|
|
|
2011-05-01 02:05:02 +04:00
|
|
|
infoMsg = "fetching tables for database"
|
2012-01-14 01:46:21 +04:00
|
|
|
infoMsg += "%s: %s" % ("s" if len(dbs) > 1 else "", ", ".join(db if isinstance(db, basestring) else db[0] for db in sorted(dbs)))
|
2010-03-23 01:57:57 +03:00
|
|
|
logger.info(infoMsg)
|
|
|
|
|
2011-01-28 19:36:09 +03:00
|
|
|
rootQuery = queries[Backend.getIdentifiedDbms()].tables
|
2010-03-23 01:57:57 +03:00
|
|
|
|
2012-01-07 23:30:35 +04:00
|
|
|
if any(isTechniqueAvailable(_) for _ in (PAYLOAD.TECHNIQUE.UNION, PAYLOAD.TECHNIQUE.ERROR)) or conf.direct:
|
2010-03-23 01:57:57 +03:00
|
|
|
for db in dbs:
|
|
|
|
if conf.excludeSysDbs and db in self.excludeDbsList:
|
|
|
|
infoMsg = "skipping system database '%s'" % db
|
|
|
|
logger.info(infoMsg)
|
|
|
|
|
|
|
|
continue
|
|
|
|
|
2012-02-03 14:56:39 +04:00
|
|
|
for query in (rootQuery.inband.query, rootQuery.inband.query2, rootQuery.inband.query3):
|
2012-01-03 22:01:14 +04:00
|
|
|
query = query.replace("%s", db)
|
|
|
|
value = inject.getValue(query, blind=False)
|
|
|
|
if not isNoneValue(value):
|
|
|
|
break
|
2010-03-23 01:57:57 +03:00
|
|
|
|
2011-05-26 12:17:21 +04:00
|
|
|
if not isNoneValue(value):
|
2012-02-29 18:05:53 +04:00
|
|
|
value = filter(None, arrayizeValue(value))
|
|
|
|
value = [safeSQLIdentificatorNaming(_, True) for _ in value]
|
|
|
|
kb.data.cachedTables[db] = value
|
2010-03-23 01:57:57 +03:00
|
|
|
|
2012-01-07 23:30:35 +04:00
|
|
|
if not kb.data.cachedTables and isInferenceAvailable() and not conf.direct:
|
2010-03-23 01:57:57 +03:00
|
|
|
for db in dbs:
|
|
|
|
if conf.excludeSysDbs and db in self.excludeDbsList:
|
|
|
|
infoMsg = "skipping system database '%s'" % db
|
|
|
|
logger.info(infoMsg)
|
|
|
|
|
|
|
|
continue
|
|
|
|
|
2011-04-30 17:20:05 +04:00
|
|
|
infoMsg = "fetching number of tables for "
|
2010-03-23 01:57:57 +03:00
|
|
|
infoMsg += "database '%s'" % db
|
|
|
|
logger.info(infoMsg)
|
|
|
|
|
2012-02-03 14:56:39 +04:00
|
|
|
for query in (rootQuery.blind.count, rootQuery.blind.count2, rootQuery.blind.count3):
|
2012-02-01 16:53:07 +04:00
|
|
|
_ = query.replace("%s", db)
|
2012-02-29 18:36:23 +04:00
|
|
|
count = inject.getValue(_, inband=False, error=False, charsetType=CHARSET_TYPE.DIGITS)
|
2012-01-10 01:09:05 +04:00
|
|
|
if not isNoneValue(count):
|
|
|
|
break
|
2010-03-23 01:57:57 +03:00
|
|
|
|
2010-12-18 00:45:20 +03:00
|
|
|
if not isNumPosStrValue(count):
|
2012-01-10 01:09:05 +04:00
|
|
|
if count != "0":
|
|
|
|
warnMsg = "unable to retrieve the number of "
|
|
|
|
warnMsg += "tables for database '%s'" % db
|
|
|
|
logger.warn(warnMsg)
|
2010-03-23 01:57:57 +03:00
|
|
|
continue
|
|
|
|
|
|
|
|
tables = []
|
|
|
|
|
2011-10-22 02:34:27 +04:00
|
|
|
for index in xrange(int(count)):
|
2012-02-03 14:56:39 +04:00
|
|
|
_ = (rootQuery.blind.query if query == rootQuery.blind.count else rootQuery.blind.query2 if query == rootQuery.blind.count2 else rootQuery.blind.query3).replace("%s", db) % index
|
2012-01-10 01:09:05 +04:00
|
|
|
|
|
|
|
table = inject.getValue(_, inband=False, error=False)
|
2012-02-29 17:56:40 +04:00
|
|
|
if not isNoneValue(table):
|
|
|
|
kb.hintValue = table
|
|
|
|
table = safeSQLIdentificatorNaming(table, True)
|
|
|
|
tables.append(table)
|
2010-03-23 01:57:57 +03:00
|
|
|
|
|
|
|
if tables:
|
|
|
|
kb.data.cachedTables[db] = tables
|
|
|
|
else:
|
2011-04-30 17:20:05 +04:00
|
|
|
warnMsg = "unable to retrieve the tables "
|
2010-03-23 01:57:57 +03:00
|
|
|
warnMsg += "for database '%s'" % db
|
|
|
|
logger.warn(warnMsg)
|
|
|
|
|
|
|
|
if not kb.data.cachedTables:
|
|
|
|
errMsg = "unable to retrieve the tables for any database"
|
|
|
|
raise sqlmapNoneDataException(errMsg)
|
2011-10-28 16:49:35 +04:00
|
|
|
else:
|
|
|
|
for db, tables in kb.data.cachedTables.items():
|
2011-10-28 17:07:23 +04:00
|
|
|
kb.data.cachedTables[db] = sorted(tables) if tables else tables
|
2010-03-23 01:57:57 +03:00
|
|
|
|
|
|
|
return kb.data.cachedTables
|
2010-05-17 00:46:17 +04:00
|
|
|
|
|
|
|
def searchTable(self):
|
2011-01-28 19:36:09 +03:00
|
|
|
rootQuery = queries[Backend.getIdentifiedDbms()].search_table
|
2010-05-17 00:46:17 +04:00
|
|
|
foundTbls = {}
|
|
|
|
tblList = conf.tbl.split(",")
|
2010-10-21 17:13:12 +04:00
|
|
|
tblCond = rootQuery.inband.condition
|
2012-02-22 14:45:10 +04:00
|
|
|
#dbCond = rootQuery.inband.condition2
|
2010-05-17 00:46:17 +04:00
|
|
|
|
|
|
|
tblConsider, tblCondParam = self.likeOrExact("table")
|
|
|
|
|
|
|
|
if not len(kb.data.cachedDbs):
|
|
|
|
enumDbs = self.getDbs()
|
|
|
|
else:
|
|
|
|
enumDbs = kb.data.cachedDbs
|
|
|
|
|
|
|
|
for db in enumDbs:
|
2011-03-30 01:54:15 +04:00
|
|
|
db = safeSQLIdentificatorNaming(db)
|
2010-05-17 00:46:17 +04:00
|
|
|
foundTbls[db] = []
|
|
|
|
|
|
|
|
for tbl in tblList:
|
2011-03-30 01:54:15 +04:00
|
|
|
tbl = safeSQLIdentificatorNaming(tbl, True)
|
2011-03-28 15:01:55 +04:00
|
|
|
|
2010-05-17 00:46:17 +04:00
|
|
|
infoMsg = "searching table"
|
|
|
|
if tblConsider == "1":
|
|
|
|
infoMsg += "s like"
|
2011-03-30 01:54:15 +04:00
|
|
|
infoMsg += " '%s'" % unsafeSQLIdentificatorNaming(tbl)
|
2010-05-17 00:46:17 +04:00
|
|
|
logger.info(infoMsg)
|
|
|
|
|
|
|
|
tblQuery = "%s%s" % (tblCond, tblCondParam)
|
2011-03-30 01:54:15 +04:00
|
|
|
tblQuery = tblQuery % unsafeSQLIdentificatorNaming(tbl)
|
2010-05-17 00:46:17 +04:00
|
|
|
|
|
|
|
for db in foundTbls.keys():
|
2011-03-30 01:54:15 +04:00
|
|
|
db = safeSQLIdentificatorNaming(db)
|
2011-03-28 15:01:55 +04:00
|
|
|
|
2010-05-17 20:16:49 +04:00
|
|
|
if conf.excludeSysDbs and db in self.excludeDbsList:
|
|
|
|
infoMsg = "skipping system database '%s'" % db
|
|
|
|
logger.info(infoMsg)
|
|
|
|
|
|
|
|
continue
|
|
|
|
|
2012-01-07 23:30:35 +04:00
|
|
|
if any(isTechniqueAvailable(_) for _ in (PAYLOAD.TECHNIQUE.UNION, PAYLOAD.TECHNIQUE.ERROR)) or conf.direct:
|
2012-02-01 16:53:07 +04:00
|
|
|
query = rootQuery.inband.query.replace("%s", db)
|
2010-05-17 00:46:17 +04:00
|
|
|
query += tblQuery
|
2011-01-19 02:02:11 +03:00
|
|
|
values = inject.getValue(query, blind=False)
|
2010-05-17 00:46:17 +04:00
|
|
|
|
2011-05-26 12:17:21 +04:00
|
|
|
if not isNoneValue(values):
|
2010-05-25 14:09:35 +04:00
|
|
|
if isinstance(values, basestring):
|
2010-05-17 00:46:17 +04:00
|
|
|
values = [ values ]
|
|
|
|
|
|
|
|
for foundTbl in values:
|
2011-02-10 14:34:16 +03:00
|
|
|
if foundTbl is None:
|
|
|
|
continue
|
|
|
|
|
2010-05-17 00:46:17 +04:00
|
|
|
foundTbls[db].append(foundTbl)
|
|
|
|
else:
|
|
|
|
infoMsg = "fetching number of table"
|
|
|
|
if tblConsider == "1":
|
|
|
|
infoMsg += "s like"
|
2011-03-30 01:54:15 +04:00
|
|
|
infoMsg += " '%s' in database '%s'" % (unsafeSQLIdentificatorNaming(tbl), unsafeSQLIdentificatorNaming(db))
|
2010-05-17 00:46:17 +04:00
|
|
|
logger.info(infoMsg)
|
|
|
|
|
2012-02-01 16:53:07 +04:00
|
|
|
query = rootQuery.blind.count
|
|
|
|
query = query.replace("%s", db)
|
2010-05-17 00:46:17 +04:00
|
|
|
query += " AND %s" % tblQuery
|
2012-02-29 18:36:23 +04:00
|
|
|
count = inject.getValue(query, inband=False, error=False, expected=EXPECTED.INT, charsetType=CHARSET_TYPE.DIGITS)
|
2010-05-17 00:46:17 +04:00
|
|
|
|
2010-12-18 00:45:20 +03:00
|
|
|
if not isNumPosStrValue(count):
|
2010-05-17 00:46:17 +04:00
|
|
|
warnMsg = "no table"
|
|
|
|
if tblConsider == "1":
|
|
|
|
warnMsg += "s like"
|
2011-03-30 01:54:15 +04:00
|
|
|
warnMsg += " '%s' " % unsafeSQLIdentificatorNaming(tbl)
|
|
|
|
warnMsg += "in database '%s'" % unsafeSQLIdentificatorNaming(db)
|
2010-05-17 00:46:17 +04:00
|
|
|
logger.warn(warnMsg)
|
|
|
|
|
|
|
|
continue
|
|
|
|
|
2012-02-16 18:42:28 +04:00
|
|
|
indexRange = getLimitRange(count)
|
2010-05-17 00:46:17 +04:00
|
|
|
|
|
|
|
for index in indexRange:
|
2012-02-01 16:53:07 +04:00
|
|
|
query = rootQuery.blind.query
|
|
|
|
query = query.replace("%s", db)
|
2010-05-17 00:46:17 +04:00
|
|
|
query += " AND %s" % tblQuery
|
|
|
|
query = agent.limitQuery(index, query, tblCond)
|
2011-01-19 02:02:11 +03:00
|
|
|
tbl = inject.getValue(query, inband=False, error=False)
|
2010-05-17 00:46:17 +04:00
|
|
|
kb.hintValue = tbl
|
|
|
|
foundTbls[db].append(tbl)
|
|
|
|
|
|
|
|
for db, tbls in foundTbls.items():
|
|
|
|
if len(tbls) == 0:
|
|
|
|
foundTbls.pop(db)
|
|
|
|
|
|
|
|
return foundTbls
|
2010-05-17 20:16:49 +04:00
|
|
|
|
|
|
|
def searchColumn(self):
|
2011-01-28 19:36:09 +03:00
|
|
|
rootQuery = queries[Backend.getIdentifiedDbms()].search_column
|
2010-05-17 20:16:49 +04:00
|
|
|
foundCols = {}
|
|
|
|
dbs = {}
|
|
|
|
colList = conf.col.split(",")
|
2010-10-21 17:13:12 +04:00
|
|
|
colCond = rootQuery.inband.condition
|
2010-05-17 20:16:49 +04:00
|
|
|
colConsider, colCondParam = self.likeOrExact("column")
|
|
|
|
|
|
|
|
if not len(kb.data.cachedDbs):
|
|
|
|
enumDbs = self.getDbs()
|
|
|
|
else:
|
|
|
|
enumDbs = kb.data.cachedDbs
|
|
|
|
|
|
|
|
for db in enumDbs:
|
2011-03-30 01:54:15 +04:00
|
|
|
db = safeSQLIdentificatorNaming(db)
|
2010-05-17 20:16:49 +04:00
|
|
|
dbs[db] = {}
|
|
|
|
|
|
|
|
for column in colList:
|
2011-03-30 01:54:15 +04:00
|
|
|
column = safeSQLIdentificatorNaming(column)
|
2011-03-28 15:01:55 +04:00
|
|
|
|
2010-05-17 20:16:49 +04:00
|
|
|
infoMsg = "searching column"
|
|
|
|
if colConsider == "1":
|
|
|
|
infoMsg += "s like"
|
2011-03-30 01:54:15 +04:00
|
|
|
infoMsg += " '%s'" % unsafeSQLIdentificatorNaming(column)
|
2010-05-17 20:16:49 +04:00
|
|
|
logger.info(infoMsg)
|
|
|
|
|
|
|
|
foundCols[column] = {}
|
|
|
|
|
|
|
|
colQuery = "%s%s" % (colCond, colCondParam)
|
2011-03-30 01:54:15 +04:00
|
|
|
colQuery = colQuery % unsafeSQLIdentificatorNaming(column)
|
2010-05-17 20:16:49 +04:00
|
|
|
|
|
|
|
for db in dbs.keys():
|
2011-03-30 01:54:15 +04:00
|
|
|
db = safeSQLIdentificatorNaming(db)
|
2011-03-28 15:01:55 +04:00
|
|
|
|
2010-05-17 20:16:49 +04:00
|
|
|
if conf.excludeSysDbs and db in self.excludeDbsList:
|
|
|
|
infoMsg = "skipping system database '%s'" % db
|
|
|
|
logger.info(infoMsg)
|
|
|
|
|
|
|
|
continue
|
|
|
|
|
2012-01-07 23:30:35 +04:00
|
|
|
if any(isTechniqueAvailable(_) for _ in (PAYLOAD.TECHNIQUE.UNION, PAYLOAD.TECHNIQUE.ERROR)) or conf.direct:
|
2011-03-28 15:01:55 +04:00
|
|
|
query = rootQuery.inband.query % (db, db, db, db, db, db)
|
2010-05-17 20:16:49 +04:00
|
|
|
query += " AND %s" % colQuery.replace("[DB]", db)
|
2011-01-19 02:02:11 +03:00
|
|
|
values = inject.getValue(query, blind=False)
|
2010-05-17 20:16:49 +04:00
|
|
|
|
2011-05-26 12:17:21 +04:00
|
|
|
if not isNoneValue(values):
|
2010-05-25 14:09:35 +04:00
|
|
|
if isinstance(values, basestring):
|
2010-05-17 20:16:49 +04:00
|
|
|
values = [ values ]
|
|
|
|
|
|
|
|
for foundTbl in values:
|
2011-03-30 01:54:15 +04:00
|
|
|
foundTbl = safeSQLIdentificatorNaming(foundTbl, True)
|
2011-03-28 15:01:55 +04:00
|
|
|
|
2011-02-10 14:28:24 +03:00
|
|
|
if foundTbl is None:
|
|
|
|
continue
|
|
|
|
|
2010-05-17 20:16:49 +04:00
|
|
|
if foundTbl not in dbs[db]:
|
|
|
|
dbs[db][foundTbl] = {}
|
|
|
|
|
|
|
|
if colConsider == "1":
|
|
|
|
conf.db = db
|
|
|
|
conf.tbl = foundTbl
|
|
|
|
conf.col = column
|
|
|
|
|
|
|
|
self.getColumns(onlyColNames=True)
|
2011-06-16 18:27:44 +04:00
|
|
|
|
|
|
|
if db in kb.data.cachedColumns and foundTbl in kb.data.cachedColumns[db]\
|
|
|
|
and not isNoneValue(kb.data.cachedColumns[db][foundTbl]):
|
2011-03-28 15:01:55 +04:00
|
|
|
dbs[db][foundTbl].update(kb.data.cachedColumns[db][foundTbl])
|
2010-05-17 20:16:49 +04:00
|
|
|
kb.data.cachedColumns = {}
|
|
|
|
else:
|
|
|
|
dbs[db][foundTbl][column] = None
|
|
|
|
|
|
|
|
if db in foundCols[column]:
|
|
|
|
foundCols[column][db].append(foundTbl)
|
|
|
|
else:
|
|
|
|
foundCols[column][db] = [ foundTbl ]
|
|
|
|
else:
|
|
|
|
foundCols[column][db] = []
|
|
|
|
|
|
|
|
infoMsg = "fetching number of tables containing column"
|
|
|
|
if colConsider == "1":
|
|
|
|
infoMsg += "s like"
|
|
|
|
infoMsg += " '%s' in database '%s'" % (column, db)
|
|
|
|
logger.info(infoMsg)
|
|
|
|
|
2012-02-01 16:53:07 +04:00
|
|
|
query = rootQuery.blind.count
|
2011-03-28 15:01:55 +04:00
|
|
|
query = query % (db, db, db, db, db, db)
|
2010-05-17 20:16:49 +04:00
|
|
|
query += " AND %s" % colQuery.replace("[DB]", db)
|
2012-02-29 18:36:23 +04:00
|
|
|
count = inject.getValue(query, inband=False, error=False, expected=EXPECTED.INT, charsetType=CHARSET_TYPE.DIGITS)
|
2010-05-17 20:16:49 +04:00
|
|
|
|
2010-12-18 00:45:20 +03:00
|
|
|
if not isNumPosStrValue(count):
|
2010-05-17 20:16:49 +04:00
|
|
|
warnMsg = "no tables contain column"
|
|
|
|
if colConsider == "1":
|
|
|
|
warnMsg += "s like"
|
|
|
|
warnMsg += " '%s' " % column
|
|
|
|
warnMsg += "in database '%s'" % db
|
|
|
|
logger.warn(warnMsg)
|
|
|
|
|
|
|
|
continue
|
|
|
|
|
2012-02-16 18:42:28 +04:00
|
|
|
indexRange = getLimitRange(count)
|
2010-05-17 20:16:49 +04:00
|
|
|
|
|
|
|
for index in indexRange:
|
2012-02-01 16:53:07 +04:00
|
|
|
query = rootQuery.blind.query
|
2011-03-28 15:01:55 +04:00
|
|
|
query = query % (db, db, db, db, db, db)
|
2010-05-17 20:16:49 +04:00
|
|
|
query += " AND %s" % colQuery.replace("[DB]", db)
|
|
|
|
query = agent.limitQuery(index, query, colCond.replace("[DB]", db))
|
2011-01-19 02:02:11 +03:00
|
|
|
tbl = inject.getValue(query, inband=False, error=False)
|
2010-05-17 20:16:49 +04:00
|
|
|
kb.hintValue = tbl
|
|
|
|
|
2011-03-30 01:54:15 +04:00
|
|
|
tbl = safeSQLIdentificatorNaming(tbl, True)
|
2011-03-28 15:01:55 +04:00
|
|
|
|
2010-05-17 20:16:49 +04:00
|
|
|
if tbl not in dbs[db]:
|
|
|
|
dbs[db][tbl] = {}
|
|
|
|
|
|
|
|
if colConsider == "1":
|
|
|
|
conf.db = db
|
|
|
|
conf.tbl = tbl
|
|
|
|
conf.col = column
|
|
|
|
|
|
|
|
self.getColumns(onlyColNames=True)
|
|
|
|
|
2011-06-16 18:27:44 +04:00
|
|
|
if db in kb.data.cachedColumns and tbl in kb.data.cachedColumns[db]:
|
|
|
|
dbs[db][tbl].update(kb.data.cachedColumns[db][tbl])
|
2010-05-17 20:16:49 +04:00
|
|
|
kb.data.cachedColumns = {}
|
|
|
|
else:
|
|
|
|
dbs[db][tbl][column] = None
|
|
|
|
|
|
|
|
foundCols[column][db].append(tbl)
|
|
|
|
|
|
|
|
self.dumpFoundColumn(dbs, foundCols, colConsider)
|