Avoid rendering raw HTML or bodies from request input
`render` options such as `html:`, `plain:`, or `inline:` must not consume unvalidated request data.
#Metadata
#Why it matters
These render modes bypass templates and can reflect attacker-controlled markup or scripts when fed tainted strings.
#Remediation
Prefer templates with escaping, sanitize any rich text, or map request identifiers to trusted server-side content instead of rendering raw params.
#Repository path
The generated metadata points to critiq-rules/libs/rules/catalog/rules/ruby/ruby.security.rails-unsafe-render.rule.yaml.