jsPDF has a Shared State Race Condition in addJS Plugin
Description
jsPDF is a library to generate PDFs in JavaScript. Prior to 4.1.0, the addJS method in the jspdf Node.js build utilizes a shared module-scoped variable (text) to store JavaScript content. When used in a concurrent environment (e.g., a Node.js web server), this variable is shared across all requests. If multiple requests generate PDFs simultaneously, the JavaScript content intended for one user may be overwritten by a subsequent request before the document is generated. This results in Cross-User Data Leakage, where the PDF generated for User A contains the JavaScript payload (and any embedded sensitive data) intended for User B. Typically, this only affects server-side environments, although the same race conditions might occur if jsPDF runs client-side. The vulnerability has been fixed in jsPDF@4.1.0.
Affected packages
Versions sourced from the GitHub Security Advisory.
| Package | Affected versions | Patched versions |
|---|---|---|
jspdfnpm | < 4.1.0 | 4.1.0 |
Affected products
1Patches
11 file changed · +6 −2
src/modules/javascript.js+6 −2 modified@@ -34,15 +34,19 @@ import { jsPDF } from "../jspdf.js"; */ (function(jsPDFAPI) { "use strict"; - var jsNamesObj, jsJsObj, text; /** * @name addJS * @function * @param {string} javascript The javascript to be embedded into the PDF-file. * @returns {jsPDF} */ jsPDFAPI.addJS = function(javascript) { - text = javascript; + // FIX: Move variables inside function scope to prevent shared state + // between multiple jsPDF instances + var jsNamesObj; + var jsJsObj; + var text = javascript; + this.internal.events.subscribe("postPutResources", function() { jsNamesObj = this.internal.newObject(); this.internal.out("<<");
Vulnerability mechanics
Generated by null/stub on May 9, 2026. Inputs: CWE entries + fix-commit diffs from this CVE's patches. Citations validated against bundle.
References
5- github.com/advisories/GHSA-cjw8-79x6-5cj4ghsaADVISORY
- nvd.nist.gov/vuln/detail/CVE-2026-24040ghsaADVISORY
- github.com/parallax/jsPDF/commit/2863e5c26afef211a545e8c174ab4d5fce3b8c0eghsax_refsource_MISCWEB
- github.com/parallax/jsPDF/releases/tag/v4.1.0ghsax_refsource_MISCWEB
- github.com/parallax/jsPDF/security/advisories/GHSA-cjw8-79x6-5cj4ghsax_refsource_CONFIRMWEB
News mentions
0No linked articles in our index yet.