Avoid feeding request data into trusted template types
`template.HTML`, `template.JS`, and `template.CSS` should not wrap request-derived strings unless they were sanitized first.
#Metadata
#Why it matters
Trusted template types disable escaping and turn reflected input into cross-site scripting when executed in browsers.
#Remediation
Run untrusted strings through an HTML sanitizer such as bluemonday, prefer typed templates, or keep data in plain escaped fields.
#Repository path
The generated metadata points to critiq-rules/libs/rules/catalog/rules/go/go.security.template-unescaped-request-value.rule.yaml.