FoxIO-LLC / ja4

JA4+ is a suite of network fingerprinting standards
https://foxio.io
Other
868 stars 73 forks source link

wireshark ,cookie pair #134

Open lyy06301 opened 2 months ago

lyy06301 commented 2 months ago

If there are multiple '=' in the cookie pair, the value will be truncated by the second '='. Should the complete value be extracted? For example, key1=value_key=value_value; The cookie extracted in ja4h is key1=value_key. Should it be key1=value_key=value_value, where key1 participates in sorting

john-althouse commented 1 month ago

That is correct. JA4H code should treat "x=y=z" as field "x" value "y=z". Does that make sense?