libhtp icon indicating copy to clipboard operation
libhtp copied to clipboard

Repeated headers are concatenated with ", ", which doesn't always work

Open WGH- opened this issue 7 years ago • 1 comments

When libhtp encounters headers with repeated name, it unconditionally concatenates them with ", " into a single header. Unfortunately, it seems to do more harm than good.

For example, consider Set-Cookie. When multiple cookies are to be set, they're sent in repeated Set-Cookie headers:

HTTP/1.0 200 OK
Content-type: text/html
Set-Cookie: theme=light
Set-Cookie: sessionToken=abc123; Expires=Wed, 09 Jun 2021 10:18:14 GMT

If they're concatenated the way libhtp does, it becomes rather difficult to tell them apart (since they contain embedded "," symbols themselves).

I've tried to remove this logic, so repeated headers are always left as separate entries in the table (htp_table_t is a multimap), and apart the few failing tests, which were rather trivial to fix, nothing seemed to break.

However, I'm aware that libhtp clients may probably assume that header map never contains multiple headers, and if fix was implemented this way, the clients would miss some headers.

The code that does this is here: https://github.com/OISF/libhtp/blob/7b0cfef0ffd4f70a4069e8266f590e4551ed9a13/htp/htp_request_generic.c#L68 https://github.com/OISF/libhtp/blob/7b0cfef0ffd4f70a4069e8266f590e4551ed9a13/htp/htp_response_generic.c#L254

WGH- avatar Dec 05 '16 17:12 WGH-

Related to https://redmine.openinfosecfoundation.org/issues/1275

catenacyber avatar Jan 24 '20 07:01 catenacyber