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
…hunked Transfer Coding" (eclipse-ee4j#2217)
+ When the org.glassfish.grizzly.http.STRICT_CHUNKED_TRANSFER_CODING_LINE_TERMINATOR_RFC_9112 option is enabled, only CRLF is allowed as the chunk-size line terminator in Chunked Transfer Coding.
+ Added testcase depending on whether option is present or not
The chunk size and chunk extension are terminated by a CRLF sequence.
RFC 9112 Chunked Transfer Coding
However, Grizzly allows even if the line terminator is only a single LF.
This can lead to unintended behavior with incorrect chunk-ext in reverse proxy solution environments.
Therefore, we should safely provide the ability to only allow CRLF.
The text was updated successfully, but these errors were encountered: