mirror of
https://github.com/caddyserver/caddy.git
synced 2024-11-22 13:29:01 +08:00
Limit unclosed placeholder tolerance (fix #4170)
This commit is contained in:
parent
e338648fed
commit
2dc747cf2d
13
replacer.go
13
replacer.go
|
@ -144,9 +144,11 @@ func (r *Replacer) replace(input, empty string,
|
||||||
// iterate the input to find each placeholder
|
// iterate the input to find each placeholder
|
||||||
var lastWriteCursor int
|
var lastWriteCursor int
|
||||||
|
|
||||||
|
// fail fast if too many placeholders are unclosed
|
||||||
|
var unclosedCount int
|
||||||
|
|
||||||
scan:
|
scan:
|
||||||
for i := 0; i < len(input); i++ {
|
for i := 0; i < len(input); i++ {
|
||||||
|
|
||||||
// check for escaped braces
|
// check for escaped braces
|
||||||
if i > 0 && input[i-1] == phEscape && (input[i] == phClose || input[i] == phOpen) {
|
if i > 0 && input[i-1] == phEscape && (input[i] == phClose || input[i] == phOpen) {
|
||||||
sb.WriteString(input[lastWriteCursor : i-1])
|
sb.WriteString(input[lastWriteCursor : i-1])
|
||||||
|
@ -158,9 +160,17 @@ scan:
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// our iterator is now on an unescaped open brace (start of placeholder)
|
||||||
|
|
||||||
|
// too many unclosed placeholders in absolutely ridiculous input can be extremely slow (issue #4170)
|
||||||
|
if unclosedCount > 100 {
|
||||||
|
return "", fmt.Errorf("too many unclosed placeholders")
|
||||||
|
}
|
||||||
|
|
||||||
// find the end of the placeholder
|
// find the end of the placeholder
|
||||||
end := strings.Index(input[i:], string(phClose)) + i
|
end := strings.Index(input[i:], string(phClose)) + i
|
||||||
if end < i {
|
if end < i {
|
||||||
|
unclosedCount++
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -168,6 +178,7 @@ scan:
|
||||||
for end > 0 && end < len(input)-1 && input[end-1] == phEscape {
|
for end > 0 && end < len(input)-1 && input[end-1] == phEscape {
|
||||||
nextEnd := strings.Index(input[end+1:], string(phClose))
|
nextEnd := strings.Index(input[end+1:], string(phClose))
|
||||||
if nextEnd < 0 {
|
if nextEnd < 0 {
|
||||||
|
unclosedCount++
|
||||||
continue scan
|
continue scan
|
||||||
}
|
}
|
||||||
end += nextEnd + 1
|
end += nextEnd + 1
|
||||||
|
|
Loading…
Reference in New Issue
Block a user