mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-27 04:05:58 +00:00
Fixes #3630
This commit is contained in:
parent
422b1a6f95
commit
a7931751ee
2 changed files with 2 additions and 2 deletions
|
|
@ -613,7 +613,7 @@ class Connect(object):
|
|||
page = getUnicode(page)
|
||||
|
||||
code = ex.code
|
||||
status = getattr(ex, "reason", None) or getSafeExString(ex).split(": ", 1)[-1]
|
||||
status = getUnicode(getattr(ex, "reason", None) or getSafeExString(ex).split(": ", 1)[-1])
|
||||
|
||||
kb.originalCode = kb.originalCode or code
|
||||
threadData.lastHTTPError = (threadData.lastRequestUID, code, status)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue