mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-03 22:31:34 +00:00
Fixes #4201
This commit is contained in:
parent
4f3f43d8bb
commit
0b93311ef2
2 changed files with 2 additions and 2 deletions
2
thirdparty/clientform/clientform.py
vendored
2
thirdparty/clientform/clientform.py
vendored
|
|
@ -709,7 +709,7 @@ class _AbstractFormParser:
|
|||
data = data[1:]
|
||||
map[key] = data
|
||||
else:
|
||||
map[key] = (map[key].decode("utf8") if isinstance(map[key], six.binary_type) else map[key]) + data
|
||||
map[key] = (map[key].decode("utf8", "replace") if isinstance(map[key], six.binary_type) else map[key]) + data
|
||||
|
||||
def do_button(self, attrs):
|
||||
debug("%s", attrs)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue