Skip to content

Commit

Permalink
CWE-113: Improper Neutralization of CRLF Sequences in HTTP Headers ('…
Browse files Browse the repository at this point in the history
…HTTP Response Splitting fix #GHSA-gv3v-92v6-m48j
  • Loading branch information
jknack committed Oct 12, 2019
1 parent d570876 commit b66e334
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@
public class NettyContext implements DefaultContext, ChannelFutureListener {

private static final HttpHeaders NO_TRAILING = EmptyHttpHeaders.INSTANCE;
final DefaultHttpHeaders setHeaders = new DefaultHttpHeaders(false);
final DefaultHttpHeaders setHeaders = new DefaultHttpHeaders(true);
private final int bufferSize;
InterfaceHttpPostRequestDecoder decoder;
private Router router;
Expand Down

0 comments on commit b66e334

Please sign in to comment.