Skip to content

Commit 91d989e

Browse files
dspeziarobpike
authored andcommitted
html/template: fix pipeline sanitization
Pipelines are altered by inserting sanitizers if they are not already present. The code makes the assumption that the first operands of each commands are function identifiers. This is wrong, since they can also be methods. It results in a panic with templates such as {{1|print 2|.f 3}} Adds an extra type assertion to make sure only identifiers are compared with sanitizers. Fixes #10673 Change-Id: I3eb820982675231dbfa970f197abc5ef335ce86b Reviewed-on: https://go-review.googlesource.com/9801 Reviewed-by: Rob Pike <[email protected]>
1 parent 3a3773c commit 91d989e

File tree

2 files changed

+13
-3
lines changed

2 files changed

+13
-3
lines changed

src/html/template/escape.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -297,9 +297,9 @@ var redundantFuncs = map[string]map[string]bool{
297297
// unless it is redundant with the last command.
298298
func appendCmd(cmds []*parse.CommandNode, cmd *parse.CommandNode) []*parse.CommandNode {
299299
if n := len(cmds); n != 0 {
300-
last, ok := cmds[n-1].Args[0].(*parse.IdentifierNode)
301-
next, _ := cmd.Args[0].(*parse.IdentifierNode)
302-
if ok && redundantFuncs[last.Ident][next.Ident] {
300+
last, okLast := cmds[n-1].Args[0].(*parse.IdentifierNode)
301+
next, okNext := cmd.Args[0].(*parse.IdentifierNode)
302+
if okLast && okNext && redundantFuncs[last.Ident][next.Ident] {
303303
return cmds
304304
}
305305
}

src/html/template/escape_test.go

+10
Original file line numberDiff line numberDiff line change
@@ -1547,6 +1547,16 @@ func TestEnsurePipelineContains(t *testing.T) {
15471547
"($).X | urlquery | html | print",
15481548
[]string{"urlquery", "html"},
15491549
},
1550+
{
1551+
"{{.X | print 2 | .f 3}}",
1552+
".X | print 2 | .f 3 | urlquery | html",
1553+
[]string{"urlquery", "html"},
1554+
},
1555+
{
1556+
"{{.X | html | print 2 | .f 3}}",
1557+
".X | urlquery | html | print 2 | .f 3",
1558+
[]string{"urlquery", "html"},
1559+
},
15501560
}
15511561
for i, test := range tests {
15521562
tmpl := template.Must(template.New("test").Parse(test.input))

0 commit comments

Comments
 (0)