mirror of
https://github.com/sqlmapproject/sqlmap
synced 2025-12-07 00:42:23 +01:00
Fix for Issue #213
This commit is contained in:
parent
99ceea5eae
commit
056be32ac1
1 changed files with 2 additions and 0 deletions
|
|
@ -3189,6 +3189,8 @@ def decodeHexValue(value):
|
||||||
value = value.decode("utf-16-be")
|
value = value.decode("utf-16-be")
|
||||||
except UnicodeDecodeError:
|
except UnicodeDecodeError:
|
||||||
pass
|
pass
|
||||||
|
if not isinstance(value, unicode):
|
||||||
|
value = value.decode("utf8", "replace")
|
||||||
return value
|
return value
|
||||||
|
|
||||||
try:
|
try:
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue