mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-02-16 19:40:37 +03:00
Patch for an Issue #907
This commit is contained in:
parent
5e9c73f9c1
commit
d400dc27f2
|
@ -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)}
|
||||||
|
try:
|
||||||
attackDumpedTable()
|
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:
|
||||||
|
|
Loading…
Reference in New Issue
Block a user