CVE-2023-24538
CVE Details
Last Update
10/10/2024
NIST CVE Summary
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 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 jstmpllitinterp=1, with the caveat that backticks
will now be escaped. This should be used with caution.
Our Official Summary
CVE-2023-24538 is a critical security vulnerability affecting the Go programming language, specifically its handling of templates with Go template actions within JavaScript template literals. The vulnerability has been addressed in recent Go releases. The risk of this vulnerability exploited in our products is low. The images in which this is reported will be upgraded to fix the issue.
CVE Severity
Status
Ongoing
Affected Products & Versions
- Palette Enterprise airgap 4.4.18
Revision History
- 1.0 09/15/2024 Initial Publication
- 2.0 09/15/2024 Added Palette Enterprise airgap 4.4.18 to Affected Products
- 3.0 10/10/2024 CVE remediated in Palette Enterprise airgap 4.5.3