Docusaurus uses React... what about CVE-2025-55182? #11602
Answered
by
slorber
pombredanne
asked this question in
General
-
|
Is docusaurus exposed to CVE-2025-55182 https://nvd.nist.gov/vuln/detail/CVE-2025-55182 ? |
Beta Was this translation helpful? Give feedback.
Answered by
slorber
Dec 5, 2025
Replies: 1 comment 3 replies
-
|
None of the vulnerable packages are ever installed by a Docusaurus site. |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Agree are not affected by this React 19 vulnerability: https://react.dev/blog/2025/12/03/critical-security-vulnerability-in-react-server-components
The exploit requires sending a malicious request to a Server Function endpoint, to get remote code execution access.
In our case, we are a static site generator, and the "server" only exists at build time. Once built, you generally host the static files on a CDN, no Server Function endpoint is ever exposed, and there's no server runtime you could even execute malicious code on.
Yes, even if we did use any of those packages (which we plan to do), the "vulnerable server" would only have existed at build time, and the attacked would need to send …