GHSA-GPV5-7X3G-GHJV

GHSA-GPV5-7X3G-GHJV is a low-severity security vulnerability in fast-xml-parser (npm), affecting versions = 4.2.4. It is fixed in 4.2.5.

Summary

This is a comment on https://github.com/NaturalIntelligence/fast-xml-parser/security/advisories/GHSA-6w63-h3fj-q4vw and the patches fixing it.

Details

The code which validates a name calls the validator:
https://github.com/NaturalIntelligence/fast-xml-parser/blob/ecf6016f9b48aec1a921e673158be0773d07283e/src/xmlparser/DocTypeReader.js#L145-L153
This checks for the presence of an invalid character. Such an approach is always risky, as it is so easy to forget to include an invalid character in the list. A safer approach is to validate entity names against the XML specification: https://www.w3.org/TR/xml11/#sec-common-syn - an ENTITY name is a Name:

[4]   NameStartChar ::= ":" | [A-Z] | "_" | [a-z] | [#xC0-#xD6] | [#xD8-#xF6] | [#xF8-#x2FF] | [#x370-#x37D] |
                        [#x37F-#x1FFF] | [#x200C-#x200D] | [#x2070-#x218F] | [#x2C00-#x2FEF] | [#x3001-#xD7FF] |
                        [#xF900-#xFDCF] | [#xFDF0-#xFFFD] | [#x10000-#xEFFFF]
[4a]  NameChar ::= NameStartChar | "-" | "." | [0-9] | #xB7 | [#x0300-#x036F] | [#x203F-#x2040]
[5]   Name ::= NameStartChar (NameChar)*

so the safest way to validate an entity name is to build a regex to represent this expression and check whether the name given matches the regex. (Something along the lines of /^[name start char class][name char class]*$/.) There's probably a nice way to simplify the explicit list rather than typing it out verbatim using Unicode character properties, but I don't know enough to do so.

Impact

Affected versions

fast-xml-parser (= 4.2.4)

Security releases

fast-xml-parser → 4.2.5 (npm)

Kodem intelligence

Severity tells you how bad this could be in the worst case. It does not tell you whether you are exposed. Exploitability and impact are functions of runtime truth: whether the vulnerable code is present, reachable, and actually executes in your application. A vulnerable package can sit in your dependency tree and never run.

Kodem, an Intelligent Application Security platform, uses runtime intelligence to reveal which vulnerabilities actually execute in production, so teams prioritize the ones that genuinely matter. Kodem's runtime-powered SCA identifies whether this CVE is reachable in your applications.

See it in your environment

Remediation advice

Upgrade fast-xml-parser to 4.2.5 or later to resolve this vulnerability.

Kodem Kai can prioritize this vulnerability in your dependency tree and generate a fix recommendation.

Frequently Asked Questions

  1. What is GHSA-GPV5-7X3G-GHJV? GHSA-GPV5-7X3G-GHJV is a low-severity security vulnerability in fast-xml-parser (npm), affecting versions = 4.2.4. It is fixed in 4.2.5.
  2. Which versions of fast-xml-parser are affected by GHSA-GPV5-7X3G-GHJV? fast-xml-parser (npm) versions = 4.2.4 is affected.
  3. Is there a fix for GHSA-GPV5-7X3G-GHJV? Yes. GHSA-GPV5-7X3G-GHJV is fixed in 4.2.5. Upgrade to this version or later.
  4. Is GHSA-GPV5-7X3G-GHJV exploitable, and should I be worried? Whether GHSA-GPV5-7X3G-GHJV is exploitable in your environment depends on whether the vulnerable code is present and reachable. A CVSS score is a worst-case rating; it does not account for your specific deployment, configuration, or usage patterns. Kodem, an Intelligent Application Security platform, uses runtime intelligence to show which vulnerabilities actually execute in production, so you can focus on the ones that represent real risk. Get a demo
  5. What actually determines whether GHSA-GPV5-7X3G-GHJV is exploitable, and how bad it is? Exploitability and impact are not fixed properties of a CVE. They depend on runtime truth: whether the vulnerable code is present, reachable, and actually executes in your application. A high CVSS score on a dependency that never runs is not the same as real risk. Kodem, an Intelligent Application Security platform, uses runtime intelligence to reveal which vulnerabilities actually execute in production, so teams prioritize the ones that genuinely matter.
  6. How do I fix GHSA-GPV5-7X3G-GHJV? Upgrade fast-xml-parser to 4.2.5 or later.

Other vulnerabilities in fast-xml-parser

CVE-2026-41650CVE-2026-33349CVE-2026-27942CVE-2026-25896CVE-2026-26278

Stop the waste.
Protect your environment with Kodem.