CVE-2026-24043: jsPDF Affected by Stored XMP Metadata Injection (Spoofing & Integrity Violation)
Impact
User control of the first argument of the addMetadata function allows users to inject arbitrary XML.
If given the possibility to pass unsanitized input to the addMetadata method, a user can inject arbitrary XMP metadata into the generated PDF. If the generated PDF is signed, stored or otherwise processed after, the integrity of the PDF can no longer be guaranteed.
Example attack vector:
js import { jsPDF } from "jspdf"
const doc = new jsPDF()
// Input a string that closes the current XML tag and opens a new one. // We are injecting a fake "dc:creator" (Author) to spoof the document source. const maliciousInput = '</jspdf:metadata></rdf:Description>' + '<rdf:Description xmlns:dc="http://purl.org/dc/elements/1.1/">' + '<dc:creator>TRUSTEDADMINISTRATOR</dc:creator>' + // <--- Spoofed Identity '</rdf:Description>' + '<rdf:Description><jspdf:metadata>'
// The application innocently adds the user's input to the metadata doc.addMetadata(maliciousInput, "http://valid.namespace")
doc.save("test.pdf")
Patches
The vulnerability has been fixed in jsPDF@4.1.0
Workarounds
Sanitize user input before passing it to the addMetadata method: escape XML entities. For example:
js let input = "..."
input = input .replace(/&/g, "&") .replace(/</g, "<") .replace(/>/g, ">") .replace(/"/g, """) .replace(/'/g, "'")
doc.addMetadata(input)
Other sources
jsPDF is a library to generate PDFs in JavaScript. Prior to 4.1.0, user control of the first argument of the addMetadata function allows users to inject arbitrary XML. If given the possibility to pass unsanitized input to the addMetadata method, a user can inject arbitrary XMP metadata into the generated PDF. If the generated PDF is signed, stored or otherwise processed after, the integrity of the PDF can no longer be guaranteed. The vulnerability has been fixed in jsPDF@4.1.0.
— MITRE
Affected Software
Remediation
Event History
Frequently Asked Questions
What is the severity of CVE-2026-24043?
CVE-2026-24043 is classified as a critical vulnerability due to its potential for stored XMP metadata injection leading to spoofing and integrity violation.
How do I fix CVE-2026-24043?
To fix CVE-2026-24043, upgrade to jsPDF version 4.1.0 or later.
What is the impact of CVE-2026-24043?
The impact of CVE-2026-24043 allows users to inject arbitrary XML through the `addMetadata` function, compromising data integrity.
Which versions of jsPDF are affected by CVE-2026-24043?
CVE-2026-24043 affects all versions of jsPDF up to and including version 4.0.0.
How can attackers exploit CVE-2026-24043?
Attackers can exploit CVE-2026-24043 by passing unsanitized input to the `addMetadata` method, enabling injection of malicious XML.