Описание
Templates do not properly consider backticks (`) as Javascript string delimiters, and do not escape them as expected. Backticks are used, since ES6, for JS template literals. If a template contains a Go template action within a Javascript template literal, the contents of the action can be used to terminate the literal, injecting arbitrary Javascript code into the Go template. As ES6 template literals are rather complex, and themselves can do string interpolation, the decision was made to simply disallow Go template actions from being used inside of them (e.g. "var a = {{.}}"), since there is no obviously safe way to allow this behavior. This takes the same approach as github.com/google/safehtml. With fix, Template.Parse returns an Error when it encounters templates like this, with an ErrorCode of value 12. This ErrorCode is currently unexported, but will be exported in the release of Go 1.21. Users who rely on the previous behavior can re-enable it using the GODEBUG flag jstmplliti...
Релиз | Статус | Примечание |
---|---|---|
bionic | ignored | end of standard support, was needed |
devel | DNE | |
esm-infra-legacy/trusty | needed | |
esm-infra/bionic | needed | |
esm-infra/focal | DNE | |
esm-infra/xenial | needed | |
focal | DNE | |
jammy | DNE | |
kinetic | DNE | |
lunar | DNE |
Показывать по
Релиз | Статус | Примечание |
---|---|---|
bionic | ignored | end of standard support, was needed |
devel | DNE | |
esm-apps/bionic | released | 1.13.8-1ubuntu1~18.04.4+esm1 |
esm-apps/jammy | released | 1.13.8-1ubuntu2.22.04.2 |
esm-apps/xenial | released | 1.13.8-1ubuntu1~16.04.3+esm3 |
esm-infra/focal | not-affected | 1.13.8-1ubuntu1.2 |
focal | released | 1.13.8-1ubuntu1.2 |
jammy | released | 1.13.8-1ubuntu2.22.04.2 |
kinetic | ignored | end of life, was needed |
lunar | DNE |
Показывать по
Релиз | Статус | Примечание |
---|---|---|
bionic | DNE | |
devel | DNE | |
esm-infra/focal | needed | |
focal | ignored | end of standard support, was needed |
jammy | DNE | |
kinetic | DNE | |
lunar | DNE | |
mantic | DNE | |
noble | DNE | |
oracular | DNE |
Показывать по
Релиз | Статус | Примечание |
---|---|---|
bionic | ignored | end of standard support, was needed |
devel | DNE | |
esm-apps/bionic | released | 1.16.2-0ubuntu1~18.04.2+esm1 |
esm-apps/focal | released | 1.16.2-0ubuntu1~20.04.1 |
focal | released | 1.16.2-0ubuntu1~20.04.1 |
jammy | DNE | |
kinetic | DNE | |
lunar | DNE | |
mantic | DNE | |
noble | DNE |
Показывать по
Релиз | Статус | Примечание |
---|---|---|
bionic | DNE | |
devel | DNE | |
esm-infra/focal | DNE | |
focal | DNE | |
jammy | released | 1.17.13-3ubuntu1.2 |
kinetic | DNE | |
lunar | DNE | |
mantic | DNE | |
noble | DNE | |
oracular | DNE |
Показывать по
Релиз | Статус | Примечание |
---|---|---|
bionic | released | 1.18.1-1ubuntu1~18.04.4 |
devel | DNE | |
esm-apps/bionic | released | 1.18.1-1ubuntu1~18.04.4 |
esm-apps/xenial | released | 1.18.1-1ubuntu1~16.04.4 |
esm-infra/focal | DNE | focal was released [1.18.1-1ubuntu1~20.04.2] |
focal | released | 1.18.1-1ubuntu1~20.04.2 |
jammy | released | 1.18.1-1ubuntu1.1 |
kinetic | DNE | |
lunar | DNE | |
mantic | DNE |
Показывать по
Релиз | Статус | Примечание |
---|---|---|
bionic | DNE | |
devel | DNE | |
esm-infra/focal | DNE | |
focal | DNE | |
jammy | DNE | |
kinetic | released | 1.19.2-1ubuntu1.1 |
lunar | not-affected | 1.19.8-1 |
mantic | DNE | |
noble | DNE | |
oracular | DNE |
Показывать по
Релиз | Статус | Примечание |
---|---|---|
bionic | DNE | |
devel | DNE | |
esm-infra/focal | DNE | focal was not-affected [1.20.3-1ubuntu0.1~20.04] |
focal | not-affected | 1.20.3-1ubuntu0.1~20.04 |
jammy | not-affected | 1.20.3-1ubuntu0.1~22.04 |
kinetic | DNE | |
lunar | not-affected | 1.20.3-1 |
mantic | not-affected | 1.20.3-1 |
noble | DNE | |
oracular | DNE |
Показывать по
Релиз | Статус | Примечание |
---|---|---|
bionic | DNE | |
devel | DNE | |
esm-infra/focal | DNE | |
esm-infra/xenial | needed | |
focal | DNE | |
jammy | DNE | |
kinetic | DNE | |
lunar | DNE | |
mantic | DNE | |
noble | DNE |
Показывать по
Релиз | Статус | Примечание |
---|---|---|
bionic | ignored | end of standard support, was needed |
devel | DNE | |
esm-apps/bionic | needed | |
esm-infra/focal | DNE | |
focal | DNE | |
jammy | DNE | |
kinetic | DNE | |
lunar | DNE | |
mantic | DNE | |
noble | DNE |
Показывать по
Релиз | Статус | Примечание |
---|---|---|
bionic | ignored | end of standard support, was needed |
devel | DNE | |
esm-apps/bionic | needed | |
esm-infra/focal | DNE | |
focal | DNE | |
jammy | DNE | |
kinetic | DNE | |
lunar | DNE | |
mantic | DNE | |
noble | DNE |
Показывать по
Ссылки на источники
EPSS
9.8 Critical
CVSS3
Связанные уязвимости
Templates do not properly consider backticks (`) as Javascript string delimiters, and do not escape them as expected. Backticks are used, since ES6, for JS template literals. If a template contains a Go template action within a Javascript template literal, the contents of the action can be used to terminate the literal, injecting arbitrary Javascript code into the Go template. As ES6 template literals are rather complex, and themselves can do string interpolation, the decision was made to simply disallow Go template actions from being used inside of them (e.g. "var a = {{.}}"), since there is no obviously safe way to allow this behavior. This takes the same approach as github.com/google/safehtml. With fix, Template.Parse returns an Error when it encounters templates like this, with an ErrorCode of value 12. This ErrorCode is currently unexported, but will be exported in the release of Go 1.21. Users who rely on the previous behavior can re-enable it using the GODEBUG flag jstmplliti...
Templates do not properly consider backticks (`) as Javascript string delimiters, and do not escape them as expected. Backticks are used, since ES6, for JS template literals. If a template contains a Go template action within a Javascript template literal, the contents of the action can be used to terminate the literal, injecting arbitrary Javascript code into the Go template. As ES6 template literals are rather complex, and themselves can do string interpolation, the decision was made to simply disallow Go template actions from being used inside of them (e.g. "var a = {{.}}"), since there is no obviously safe way to allow this behavior. This takes the same approach as github.com/google/safehtml. With fix, Template.Parse returns an Error when it encounters templates like this, with an ErrorCode of value 12. This ErrorCode is currently unexported, but will be exported in the release of Go 1.21. Users who rely on the previous behavior can re-enable it using the GODEBUG flag jstmpllitinte
Templates do not properly consider backticks (`) as Javascript string ...
Templates do not properly consider backticks (`) as Javascript string delimiters, and do not escape them as expected. Backticks are used, since ES6, for JS template literals. If a template contains a Go template action within a Javascript template literal, the contents of the action can be used to terminate the literal, injecting arbitrary Javascript code into the Go template. As ES6 template literals are rather complex, and themselves can do string interpolation, the decision was made to simply disallow Go template actions from being used inside of them (e.g. "var a = {{.}}"), since there is no obviously safe way to allow this behavior. This takes the same approach as github.com/google/safehtml. With fix, Template.Parse returns an Error when it encounters templates like this, with an ErrorCode of value 12. This ErrorCode is currently unexported, but will be exported in the release of Go 1.21. Users who rely on the previous behavior can re-enable it using the GODEBUG flag jstmplliti...
Уязвимость пакета golang операционной системы Debian GNU/Linux, позволяющая нарушителю выполнить произвольный код
EPSS
9.8 Critical
CVSS3