mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-03 22:31:34 +00:00
Fixes #1320
This commit is contained in:
parent
301aca57e6
commit
bcb25823e6
7 changed files with 11 additions and 10 deletions
|
|
@ -341,13 +341,13 @@ class Entries:
|
|||
attackDumpedTable()
|
||||
except (IOError, OSError), ex:
|
||||
errMsg = "an error occurred while attacking "
|
||||
errMsg += "table dump ('%s')" % ex
|
||||
errMsg += "table dump ('%s')" % getUnicode(ex)
|
||||
logger.critical(errMsg)
|
||||
conf.dumper.dbTableValues(kb.data.dumpedTable)
|
||||
|
||||
except SqlmapConnectionException, ex:
|
||||
errMsg = "connection exception detected in dumping phase "
|
||||
errMsg += "('%s')" % ex
|
||||
errMsg += "('%s')" % getUnicode(ex)
|
||||
logger.critical(errMsg)
|
||||
|
||||
finally:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue