1
0
mirror of https://github.com/golang/go synced 2024-11-11 23:10:23 -07:00

net/http: drop headers with invalid keys in Header.Write

Don't let handlers inject unexpected headers by setting keys like:
	w.Header().Set("Evil: x\r\nSmuggle", y)

Fixes #47711.

Change-Id: I459ce1c79bc273a84230a0f5b665f81c46dbc672
Reviewed-on: https://go-review.googlesource.com/c/go/+/342530
Trust: Damien Neil <dneil@google.com>
Run-TryBot: Damien Neil <dneil@google.com>
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
TryBot-Result: Go Bot <gobot@golang.org>
This commit is contained in:
Damien Neil 2021-08-16 10:46:06 -07:00
parent d35035f84e
commit ec27168712
2 changed files with 22 additions and 0 deletions

View File

@ -13,6 +13,8 @@ import (
"strings"
"sync"
"time"
"golang.org/x/net/http/httpguts"
)
// A Header represents the key-value pairs in an HTTP header.
@ -192,6 +194,13 @@ func (h Header) writeSubset(w io.Writer, exclude map[string]bool, trace *httptra
kvs, sorter := h.sortedKeyValues(exclude)
var formattedVals []string
for _, kv := range kvs {
if !httpguts.ValidHeaderFieldName(kv.key) {
// This could be an error. In the common case of
// writing reponse headers, however, we have no good
// way to provide the error back to the server
// handler, so just drop invalid headers instead.
continue
}
for _, v := range kv.values {
v = headerNewlineToSpace.Replace(v)
v = textproto.TrimString(v)

View File

@ -89,6 +89,19 @@ var headerWriteTests = []struct {
"k4: 4a\r\nk4: 4b\r\nk6: 6a\r\nk6: 6b\r\n" +
"k7: 7a\r\nk7: 7b\r\nk8: 8a\r\nk8: 8b\r\nk9: 9a\r\nk9: 9b\r\n",
},
// Tests invalid characters in headers.
{
Header{
"Content-Type": {"text/html; charset=UTF-8"},
"NewlineInValue": {"1\r\nBar: 2"},
"NewlineInKey\r\n": {"1"},
"Colon:InKey": {"1"},
"Evil: 1\r\nSmuggledValue": {"1"},
},
nil,
"Content-Type: text/html; charset=UTF-8\r\n" +
"NewlineInValue: 1 Bar: 2\r\n",
},
}
func TestHeaderWrite(t *testing.T) {