POST submission data error
chixiaome opened this issue · 3 comments
chixiaome commented
0140454 commented
Thanks for your report.
Since HackBar uses decodeURIComponent
when rebuilding form to be sent, it will throw an error when you use wide byte.
Possible solution is using the processing logic of application/json
enctype.
- Split
A=%df'&B=Hello
into two partA=%df'&B
andHello
. - Construct a
text/plain
form with a input whose name isA=...
and value isHe...
. - After submitting this form, overwrite
content-type
header withapplication/x-www-form-urlencoded
in background page.
I may publish a new version in the next few days. If you cannot wait the release, you can modify code according to the above description.
0140454 commented
Need another solution