You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Multipart/form-data messages have field name listed in Content-Disposition header field. It's something like name="field1". Libhtp parses such messages just fine. However, at least some platforms also accept name=field1, without double quotes (for example, Apache/PHP). Libhtp skips such parameters.
Multipart/form-data messages have field name listed in Content-Disposition header field. It's something like
name="field1". Libhtp parses such messages just fine. However, at least some platforms also acceptname=field1, without double quotes (for example, Apache/PHP). Libhtp skips such parameters.Steps to reproduce:
(additional spaces were added to keep content length the same. They are not significant for the issue.)
make test)Expected results:
Test succeeds.
Actual results:
Test fails.