0.8.15
Fixed 1
- The parser now reports a not-well-formed end tag whose valid name is followed by trailing content as a recoverable error instead of accepting it silently, per the XML ETag production
Security 7
- Parsing a deeply or repeatedly namespaced document no longer consumes quadratic memory; the in-scope namespace map is inherited through the prototype chain instead of being copied for every prefix-declaring element, preventing a denial-of-service reachable from DOMParser.parseFromString with default options
- Attribute de-duplication during parsing is now O(M) instead of O(M²); the NamedNodeMap parse-time dedup path uses a null-prototype membership index, preventing a well-formed document with a hostile number of duplicate attributes from wedging the parse
- Trimming trailing whitespace from an XML end tag is now anchored so it runs in linear time instead of backtracking quadratically on a long whitespace run, preventing a ReDoS reachable from DOMParser.parseFromString
- Malformed-input recovery is now linear instead of quadratic — the malformed tag-name scan terminates at an embedded < and Node.prototype.normalize() merges adjacent text nodes in O(K) instead of O(K²)
- XMLSerializer.serializeToString() under requireWellFormed: true now rejects a DocType name that is not a valid XML Name, throwing InvalidStateError, preventing XML injection via DocumentType.name
- XMLSerializer.serializeToString() under requireWellFormed: true now validates a processing-instruction target as an XML NCName and rejects a case-insensitive xml, throwing InvalidStateError, preventing PI-target injection
- Document.createEntityReference() now rejects an invalid XML Name at creation, and XMLSerializer.serializeToString() under requireWellFormed: true validates an EntityReference nodeName as an XML Name, throwing InvalidStateError, preventing XML injection via an entity-reference name
From xmldom
Fixed
- Security: parsing a deeply or repeatedly namespaced document no longer consumes quadratic memory; the in-scope namespace map is inherited through the prototype chain instead of being copied for every prefix-declaring element (O(N) instead of O(N²)), preventing a denial-of-service reachable from
DOMParser.parseFromStringwith default options. Serialized output is byte-identical.GHSA-965w-775f-mr7g - Security: attribute de-duplication during parsing is now O(M) instead of O(M²); the
NamedNodeMapparse-time dedup path uses a null-prototype membership index, so a well-formed document with a hostile number of duplicate attributes can no longer wedge the parse. Attribute order and duplicate resolution (last value wins, first position kept) are byte-identical, preserving the XML no-duplicate-attributes well-formedness constraint.GHSA-8344-3jmq-59r6 - Security: trimming trailing whitespace from an XML end tag (
ETag) is now anchored so it runs in linear time instead of backtracking quadratically on a long whitespace run, preventing a ReDoS reachable fromDOMParser.parseFromString. Trimmed output is byte-identical.GHSA-x4fp-j954-r2f4 - Security: malformed-input recovery is now linear instead of quadratic — the malformed tag-name scan terminates at an embedded
<, andNode.prototype.normalize()merges adjacent text nodes in O(K) instead of O(K²) (also reachable programmatically), pernormalize()in the WHATWG DOM spec. DOM output is unchanged; only the reported error text differs.GHSA-93r5-fhx6-vmg9 - Security:
XMLSerializer.serializeToString()under{ requireWellFormed: true }now rejects a DocTypenamethat is not a valid XMLName, throwingInvalidStateError— matching the siblingpublicId/systemId/internalSubsetchecks and preventing XML injection viaDocumentType.name.GHSA-27p8-2357-5qqv - Security:
XMLSerializer.serializeToString()under{ requireWellFormed: true }now validates a processing-instruction target as an XMLNCNameand rejects a case-insensitivexml, throwingInvalidStateError— a check0.8.xdid not previously perform, preventing PI-target injection via>,?, or whitespace.GHSA-c7q8-3ch8-vqpv - Security:
Document.createEntityReference()now rejects an invalid XMLNameat creation, andXMLSerializer.serializeToString()under{ requireWellFormed: true }validates anEntityReferencenodeNameas an XMLName, throwingInvalidStateError— preventing XML injection via an entity-reference name.GHSA-6gmq-8vp8-gcm6 - Security: the parser now reports a not-well-formed end tag whose valid name is followed by trailing content as a recoverable
errorinstead of accepting it silently, per the XMLETagproduction; parsing recovers to the byte-identical DOM. Consumers that want strict rejection can escalate the reportederrorto fatal via the parser'serrorHandler.GHSA-6h8r-xr42-gp59
Thank you, @ericchiang, @bhaswanthc, @arpitjain099, @Paranoidgrinch, for your contributions