diff --git a/rust/htp/src/response.rs b/rust/htp/src/response.rs index cf1ed409a5..604551b1fa 100644 --- a/rust/htp/src/response.rs +++ b/rust/htp/src/response.rs @@ -1229,6 +1229,7 @@ impl ConnectionParser { HtpContentEncoding::Lzma } else if encoding.cmp_slice(b"inflate") == Ordering::Equal || encoding.cmp_slice(b"none") == Ordering::Equal + || encoding.cmp_slice(b"identity") == Ordering::Equal { HtpContentEncoding::None } else {