mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-02-17 03:50:42 +03:00
bug fix (UnicodeDecodeError: 'ascii' codec can't decode byte 0xa9 in position 959)
This commit is contained in:
parent
3043ed095a
commit
cb17e61f35
|
@ -266,6 +266,8 @@ class Connect:
|
|||
else:
|
||||
debugMsg = "got HTTP error code: %d (%s)" % (code, status)
|
||||
logger.debug(debugMsg)
|
||||
page = sanitizeAsciiString(page)
|
||||
page = getUnicode(page)
|
||||
parseResponse(page, responseHeaders)
|
||||
return page, responseHeaders
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user