mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-12-06 12:41:30 +00:00
bug fix for international encoded letters
This commit is contained in:
@@ -66,6 +66,11 @@ def urldecode(value):
|
||||
result = None
|
||||
|
||||
if value:
|
||||
try:
|
||||
# for cases like T%C3%BCrk%C3%A7e
|
||||
value = str(value)
|
||||
result = utf8decode(urllib.unquote_plus(value))
|
||||
except ValueError:
|
||||
result = urllib.unquote_plus(value)
|
||||
|
||||
return result
|
||||
|
||||
Reference in New Issue
Block a user