giteabot backport / giteabot (push) Canceled after 0s
giteabot / giteabot (push) Canceled after 0s
release-nightly / nightly-binary (push) Canceled after 0s
release-nightly / nightly-container (push) Canceled after 0s
cache-seeder / gobuild (push) Canceled after 0s
cache-seeder / lint (bindata, lint-backend) (push) Canceled after 0s
release-nightly-snapcraft / build-and-publish (push) Canceled after 0s
Includes direct password setup links in registration emails. Assisted-by: Codex:GPT-5
28 lines
935 B
Go
28 lines
935 B
Go
// Copyright 2026 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package middleware
|
|
|
|
import (
|
|
"strings"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestParseAcceptLanguage(t *testing.T) {
|
|
// a normal header is parsed and its leading language preserved
|
|
tags := parseAcceptLanguage("de-DE,de;q=0.9,en;q=0.8")
|
|
assert.NotEmpty(t, tags)
|
|
assert.Equal(t, "de-DE", tags[0].String())
|
|
|
|
// an oversized "_"-separated header would drive ParseAcceptLanguage into its
|
|
// quadratic-time path (the built-in guard only counts "-"); the length bound
|
|
// keeps the input passed to the parser small so it cannot be used for a DoS.
|
|
malicious := strings.Repeat("_aaaaaaaaa", 1<<16) // ~640 KiB, zero "-" characters
|
|
assert.Greater(t, len(malicious), maxAcceptLanguageLen)
|
|
tags = parseAcceptLanguage(malicious)
|
|
// no panic / hang, and nothing meaningful is parsed out of the garbage
|
|
assert.Empty(t, tags)
|
|
}
|