mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-12-07 13:11:29 +00:00
don't let sqlmapNoneDataException for one table to break whole dumpAll()
This commit is contained in:
@@ -1493,14 +1493,19 @@ class Enumeration:
|
||||
conf.db = db
|
||||
|
||||
for table in tables:
|
||||
conf.tbl = table
|
||||
kb.data.cachedColumns = {}
|
||||
kb.data.dumpedTable = {}
|
||||
try:
|
||||
conf.tbl = table
|
||||
kb.data.cachedColumns = {}
|
||||
kb.data.dumpedTable = {}
|
||||
|
||||
data = self.dumpTable()
|
||||
data = self.dumpTable()
|
||||
|
||||
if data:
|
||||
conf.dumper.dbTableValues(data)
|
||||
except sqlmapNoneDataException:
|
||||
infoMsg = "skipping table '%s'" % table
|
||||
logger.info(infoMsg)
|
||||
|
||||
if data:
|
||||
conf.dumper.dbTableValues(data)
|
||||
|
||||
def dumpFoundColumn(self, dbs, foundCols, colConsider):
|
||||
if not dbs:
|
||||
|
||||
Reference in New Issue
Block a user