mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 20:57:36 +03:00
http3: reject negative values for the Content-Length header (#3966)
This commit is contained in:
parent
c4b3d979bd
commit
ab192a084d
2 changed files with 16 additions and 3 deletions
|
@ -96,12 +96,13 @@ func requestFromHeaders(headers []qpack.HeaderField) (*http.Request, error) {
|
||||||
|
|
||||||
var contentLength int64
|
var contentLength int64
|
||||||
if len(contentLengthStr) > 0 {
|
if len(contentLengthStr) > 0 {
|
||||||
cl, err := strconv.ParseInt(contentLengthStr, 10, 64)
|
// use ParseUint instead of ParseInt, so that parsing fails on negative values
|
||||||
|
cl, err := strconv.ParseUint(contentLengthStr, 10, 63)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, fmt.Errorf("invalid content length: %w", err)
|
||||||
}
|
}
|
||||||
httpHeaders.Set("Content-Length", contentLengthStr)
|
httpHeaders.Set("Content-Length", contentLengthStr)
|
||||||
contentLength = cl
|
contentLength = int64(cl)
|
||||||
}
|
}
|
||||||
|
|
||||||
return &http.Request{
|
return &http.Request{
|
||||||
|
|
|
@ -66,6 +66,18 @@ var _ = Describe("Request", func() {
|
||||||
Expect(err).To(MatchError(`invalid header field value for content: "\n"`))
|
Expect(err).To(MatchError(`invalid header field value for content: "\n"`))
|
||||||
})
|
})
|
||||||
|
|
||||||
|
It("rejects negative Content-Length values", func() {
|
||||||
|
headers := []qpack.HeaderField{
|
||||||
|
{Name: ":path", Value: "/foo"},
|
||||||
|
{Name: ":authority", Value: "quic.clemente.io"},
|
||||||
|
{Name: ":method", Value: "GET"},
|
||||||
|
{Name: "content-length", Value: "-42"},
|
||||||
|
}
|
||||||
|
_, err := requestFromHeaders(headers)
|
||||||
|
Expect(err).To(HaveOccurred())
|
||||||
|
Expect(err.Error()).To(ContainSubstring("invalid content length"))
|
||||||
|
})
|
||||||
|
|
||||||
It("parses path with leading double slashes", func() {
|
It("parses path with leading double slashes", func() {
|
||||||
headers := []qpack.HeaderField{
|
headers := []qpack.HeaderField{
|
||||||
{Name: ":path", Value: "//foo"},
|
{Name: ":path", Value: "//foo"},
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue