Does http.header_names dedup header names?

I have a sample where there are two Accept header entries. I was going to use http.header_names to specify order, so in this case it would be something like content:“Accept|0d 0a|Accept|0d 0a|Accept-Language|0d 0a|”. The rule doesn’t fire against said pcap with the double Accept defined. It will fire with content:“Accept|0d 0a|Accept-Language|0d 0a|”;

Is the apparent deduplication expected? It seems unintended based on the docs. Thanks in advance!

JT

libhtp dedups indead, and concats the values. See also:
https://redmine.openinfosecfoundation.org/issues/1275

It’s something I’d like to see fixed.

Ah, I see. Thanks Victor!

JT