mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-12-07 13:11:29 +00:00
Patch for an Issue #907
This commit is contained in:
@@ -337,12 +337,17 @@ class Entries:
|
|||||||
kb.data.dumpedTable["__infos__"] = {"count": entriesCount,
|
kb.data.dumpedTable["__infos__"] = {"count": entriesCount,
|
||||||
"table": safeSQLIdentificatorNaming(tbl, True),
|
"table": safeSQLIdentificatorNaming(tbl, True),
|
||||||
"db": safeSQLIdentificatorNaming(conf.db)}
|
"db": safeSQLIdentificatorNaming(conf.db)}
|
||||||
attackDumpedTable()
|
try:
|
||||||
|
attackDumpedTable()
|
||||||
|
except Exception, ex:
|
||||||
|
errMsg = "an error occurred while attacking "
|
||||||
|
errMsg += "table dump ('%s')" % ex
|
||||||
|
logger.critical(errMsg)
|
||||||
conf.dumper.dbTableValues(kb.data.dumpedTable)
|
conf.dumper.dbTableValues(kb.data.dumpedTable)
|
||||||
|
|
||||||
except SqlmapConnectionException, e:
|
except SqlmapConnectionException, ex:
|
||||||
errMsg = "connection exception detected in dumping phase: "
|
errMsg = "connection exception detected in dumping phase "
|
||||||
errMsg += "'%s'" % e
|
errMsg += "('%s')" % ex
|
||||||
logger.critical(errMsg)
|
logger.critical(errMsg)
|
||||||
|
|
||||||
finally:
|
finally:
|
||||||
|
|||||||
Reference in New Issue
Block a user