The documentation of remark-html has mentioned that it was safe by default. In practise the default was never safe and had to be opted into. This means arbitrary HTML can be passed through leading to potential XSS attacks.
The problem has been patched in 13.0.2 and 14.0.1: remark-html is now safe by default, and the implementation matches the documentation.
On older affected versions, pass sanitize: true, like so:
- .use(remarkHtml)
+ .use(remarkHtml, {sanitize: true})
n/a
If you have any questions or comments about this advisory:
* Open an issue in remark-html
* Email us at security@unifiedjs.com
{
"github_reviewed": true,
"nvd_published_at": "2021-09-07T19:15:00Z",
"severity": "CRITICAL",
"cwe_ids": [
"CWE-79"
],
"github_reviewed_at": "2021-09-07T19:05:40Z"
}