Jte HTML templates with script tags or script attributes that include a Javascript template string (backticks) are subject to XSS.
The javaScriptBlock and javaScriptAttribute methods in the Escape class (source) do not escape backticks, which are used for Javascript template strings. Dollar signs in template strings should also be escaped as well to prevent undesired interpolation.
src/jte/xss.jte:
@param String someMessage
<!DOCTYPE html>
<html lang="en">
<head>
<title>XSS Test</title>
<script>window.someVariable = `${someMessage}`;</script>
</head>
<body>
<h1>XSS Test</h1>
</body>
</html>
final StringOutput output = new StringOutput();
JtexssGenerated.render(new OwaspHtmlTemplateOutput(output), null, "` + alert(`xss`) + `");
renderHtml(output);
HTML templates rendered by Jte's OwaspHtmlTemplateOutput in versions less than or equal to 3.1.15 with script tags or script attributes that contain Javascript template strings (backticks) are vulnerable.
{
"cwe_ids": [
"CWE-150",
"CWE-79"
],
"github_reviewed": true,
"github_reviewed_at": "2025-01-13T16:57:59Z",
"nvd_published_at": "2025-01-13T20:15:30Z",
"severity": "MODERATE"
}