mirror of
https://github.com/golang/go.git
synced 2025-05-30 19:52:53 +00:00
html/template: disallow angle brackets in CSS values
Angle brackets should not appear in CSS contexts, as they may affect token boundaries (such as closing a <style> tag, resulting in injection). Instead emit filterFailsafe, matching the behavior for other dangerous characters. Thanks to Juho Nurminen of Mattermost for reporting this issue. Fixes #59720 Fixes CVE-2023-24539 Change-Id: Iccc659c9a18415992b0c05c178792228e3a7bae4 Reviewed-on: https://team-review.git.corp.google.com/c/golang/go-private/+/1826636 Reviewed-by: Julie Qiu <julieqiu@google.com> Run-TryBot: Roland Shoemaker <bracewell@google.com> Reviewed-by: Damien Neil <dneil@google.com> Reviewed-on: https://go-review.googlesource.com/c/go/+/491615 Reviewed-by: Dmitri Shuralyov <dmitshur@golang.org> Reviewed-by: Dmitri Shuralyov <dmitshur@google.com> Run-TryBot: Carlos Amedee <carlos@golang.org> TryBot-Result: Gopher Robot <gobot@golang.org>
This commit is contained in:
parent
72ba91902a
commit
8673ca81e5
@ -238,7 +238,7 @@ func cssValueFilter(args ...any) string {
|
|||||||
// inside a string that might embed JavaScript source.
|
// inside a string that might embed JavaScript source.
|
||||||
for i, c := range b {
|
for i, c := range b {
|
||||||
switch c {
|
switch c {
|
||||||
case 0, '"', '\'', '(', ')', '/', ';', '@', '[', '\\', ']', '`', '{', '}':
|
case 0, '"', '\'', '(', ')', '/', ';', '@', '[', '\\', ']', '`', '{', '}', '<', '>':
|
||||||
return filterFailsafe
|
return filterFailsafe
|
||||||
case '-':
|
case '-':
|
||||||
// Disallow <!-- or -->.
|
// Disallow <!-- or -->.
|
||||||
|
@ -231,6 +231,8 @@ func TestCSSValueFilter(t *testing.T) {
|
|||||||
{`-exp\000052 ession(alert(1337))`, "ZgotmplZ"},
|
{`-exp\000052 ession(alert(1337))`, "ZgotmplZ"},
|
||||||
{`-expre\0000073sion`, "-expre\x073sion"},
|
{`-expre\0000073sion`, "-expre\x073sion"},
|
||||||
{`@import url evil.css`, "ZgotmplZ"},
|
{`@import url evil.css`, "ZgotmplZ"},
|
||||||
|
{"<", "ZgotmplZ"},
|
||||||
|
{">", "ZgotmplZ"},
|
||||||
}
|
}
|
||||||
for _, test := range tests {
|
for _, test := range tests {
|
||||||
got := cssValueFilter(test.css)
|
got := cssValueFilter(test.css)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user