XML injection (XXE) In fast-xml-builder
Description
fast-xml-builder allows attribute values with unwanted quotes to bypass malicious or unwanted attributes
Summary
When an input data has quotes in attribute values but process entities is not enabled, it breaks the attribute value into multiple attributes. This gives the room for an attacker to insert unwanted attributes to the XML/HTML.
Detail
Malicious Input
{ a: { "@_attr": '" onClick="alert(1)' } }
Output
<a attr="" onClick="alert(1)"></a>
Workarounds
If you're not ignoring attributes then keep processEntities flag true.
Mitigation
Update Impact
Minimal update. May introduce new vulnerabilities or breaking changes.
Ecosystem | Package | Affected version | Patched versions |
|---|---|---|---|
npm | fast-xml-builder | 1.1.7 |
Aliases
1. 2. 3. 4. 5.
References
1.