Staging Environment: Content and features may be unstable or change without notice.
Search for packages
Package details: pkg:gem/nokogiri@1.13.5
purl pkg:gem/nokogiri@1.13.5
Next non-vulnerable version 1.19.1
Latest non-vulnerable version 1.19.1
Risk 4.5
Vulnerabilities affecting this package (15)
Vulnerability Summary Fixed by
VCID-365e-j8ta-h7cn
Aliases:
GHSA-xc9x-jj77-9p9j
GMS-2024-127
Nokogiri update packaged libxml2 to v2.12.5 to resolve CVE-2024-25062 ## Summary Nokogiri upgrades its dependency libxml2 as follows: - Nokogiri v1.15.6 upgrades libxml2 to [2.11.7](https://gitlab.gnome.org/GNOME/libxml2/-/releases/v2.11.7) from 2.11.6 - Nokogiri v1.16.2 upgrades libxml2 to [2.12.5](https://gitlab.gnome.org/GNOME/libxml2/-/releases/v2.12.5) from 2.12.4 libxml2 v2.11.7 and v2.12.5 address the following vulnerability: - CVE-2024-25062 / https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2024-25062 - described at https://gitlab.gnome.org/GNOME/libxml2/-/issues/604 - patched by https://gitlab.gnome.org/GNOME/libxml2/-/commit/92721970 Please note that this advisory only applies to the CRuby implementation of Nokogiri, and only if the _packaged_ libraries are being used. If you've overridden defaults at installation time to use _system_ libraries instead of packaged libraries, you should instead pay attention to your distro's `libxml2` release announcements. JRuby users are not affected. ## Mitigation Upgrade to Nokogiri `~> 1.15.6` or `>= 1.16.2`. Users who are unable to upgrade Nokogiri may also choose a more complicated mitigation: compile and link Nokogiri against patched external libxml2 libraries which will also address these same issues. ## Impact From the CVE description, this issue applies to the `xmlTextReader` module (which underlies `Nokogiri::XML::Reader`): > When using the XML Reader interface with DTD validation and XInclude expansion enabled, processing crafted XML documents can lead to an xmlValidatePopElement use-after-free. ## Timeline - 2024-02-04 10:35 EST - this GHSA is drafted without complete details about when the upstream issue was introduced; a request is made of libxml2 maintainers for more detailed information - 2024-02-04 10:48 EST - updated GHSA to reflect libxml2 maintainers' confirmation of affected versions - 2024-02-04 11:54 EST - v1.16.2 published, this GHSA made public - 2024-02-05 10:18 EST - updated with MITRE link to the CVE information, and updated "Impact" section - 2024-03-16 09:03 EDT - v1.15.6 published (see discussion at https://github.com/sparklemotion/nokogiri/discussions/3146), updated mitigation information - 2024-03-18 22:12 EDT - update "affected products" range with v1.15.6 information
1.15.6
Affected by 8 other vulnerabilities.
1.16.0.rc1
Affected by 9 other vulnerabilities.
1.16.2
Affected by 8 other vulnerabilities.
VCID-43qu-922g-myca
Aliases:
GHSA-2qc6-mcvw-92cw
GMS-2022-5550
Update bundled libxml2 to v2.10.3 to resolve multiple CVEs ### Summary Nokogiri v1.13.9 upgrades the packaged version of its dependency libxml2 to [v2.10.3](https://gitlab.gnome.org/GNOME/libxml2/-/releases/v2.10.3) from v2.9.14. libxml2 v2.10.3 addresses the following known vulnerabilities: - [CVE-2022-2309](https://nvd.nist.gov/vuln/detail/CVE-2022-2309) - [CVE-2022-40304](https://nvd.nist.gov/vuln/detail/CVE-2022-40304) - [CVE-2022-40303](https://nvd.nist.gov/vuln/detail/CVE-2022-40303) Please note that this advisory only applies to the CRuby implementation of Nokogiri `< 1.13.9`, and only if the _packaged_ libraries are being used. If you've overridden defaults at installation time to use _system_ libraries instead of packaged libraries, you should instead pay attention to your distro's `libxml2` release announcements. ### Mitigation Upgrade to Nokogiri `>= 1.13.9`. Users who are unable to upgrade Nokogiri may also choose a more complicated mitigation: compile and link Nokogiri against external libraries libxml2 `>= 2.10.3` which will also address these same issues. ### Impact #### libxml2 [CVE-2022-2309](https://nvd.nist.gov/vuln/detail/CVE-2022-2309) - **CVSS3 score**: Under evaluation - **Type**: Denial of service - **Description**: NULL Pointer Dereference allows attackers to cause a denial of service (or application crash). This only applies when lxml is used together with libxml2 2.9.10 through 2.9.14. libxml2 2.9.9 and earlier are not affected. It allows triggering crashes through forged input data, given a vulnerable code sequence in the application. The vulnerability is caused by the iterwalk function (also used by the canonicalize function). Such code shouldn't be in wide-spread use, given that parsing + iterwalk would usually be replaced with the more efficient iterparse function. However, an XML converter that serialises to C14N would also be vulnerable, for example, and there are legitimate use cases for this code sequence. If untrusted input is received (also remotely) and processed via iterwalk function, a crash can be triggered. Nokogiri maintainers investigated at #2620 and determined this CVE does not affect Nokogiri users. #### libxml2 [CVE-2022-40304](https://nvd.nist.gov/vuln/detail/CVE-2022-40304) - **CVSS3 score**: Unspecified upstream - **Type**: Data corruption, denial of service - **Description**: When an entity reference cycle is detected, the entity content is cleared by setting its first byte to zero. But the entity content might be allocated from a dict. In this case, the dict entry becomes corrupted leading to all kinds of logic errors, including memory errors like double-frees. See https://gitlab.gnome.org/GNOME/libxml2/-/commit/644a89e080bced793295f61f18aac8cfad6bece2 #### libxml2 [CVE-2022-40303](https://nvd.nist.gov/vuln/detail/CVE-2022-40303) - **CVSS3 score**: Unspecified upstream - **Type**: Integer overflow - **Description**: Integer overflows with XML_PARSE_HUGE See https://gitlab.gnome.org/GNOME/libxml2/-/commit/c846986356fc149915a74972bf198abc266bc2c0 ### References - [libxml2 release notes](https://gitlab.gnome.org/GNOME/libxml2/-/releases) - [CVE-2022-2309](https://nvd.nist.gov/vuln/detail/CVE-2022-2309) - [CVE-2022-40304](https://nvd.nist.gov/vuln/detail/CVE-2022-40304) - [CVE-2022-40303](https://nvd.nist.gov/vuln/detail/CVE-2022-40303)
1.13.9
Affected by 12 other vulnerabilities.
VCID-6r5w-pgkx-v3cb
Aliases:
GHSA-353f-x4gh-cqq8
Nokogiri patches vendored libxml2 to resolve multiple CVEs ## Summary Nokogiri v1.18.9 patches the vendored libxml2 to address CVE-2025-6021, CVE-2025-6170, CVE-2025-49794, CVE-2025-49795, and CVE-2025-49796. ## Impact and severity ### CVE-2025-6021 A flaw was found in libxml2's xmlBuildQName function, where integer overflows in buffer size calculations can lead to a stack-based buffer overflow. This issue can result in memory corruption or a denial of service when processing crafted input. NVD claims a severity of 7.5 High (CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H) Fixed by applying https://gitlab.gnome.org/GNOME/libxml2/-/commit/17d950ae ### CVE-2025-6170 A flaw was found in the interactive shell of the xmllint command-line tool, used for parsing XML files. When a user inputs an overly long command, the program does not check the input size properly, which can cause it to crash. This issue might allow attackers to run harmful code in rare configurations without modern protections. NVD claims a severity of 2.5 Low (CVSS:3.1/AV:L/AC:H/PR:N/UI:R/S:U/C:N/I:N/A:L) Fixed by applying https://gitlab.gnome.org/GNOME/libxml2/-/commit/5e9ec5c1 ### CVE-2025-49794 A use-after-free vulnerability was found in libxml2. This issue occurs when parsing XPath elements under certain circumstances when the XML schematron has the <sch:name path="..."/> schema elements. This flaw allows a malicious actor to craft a malicious XML document used as input for libxml, resulting in the program's crash using libxml or other possible undefined behaviors. NVD claims a severity of 9.1 Critical (CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:H) Fixed by applying https://gitlab.gnome.org/GNOME/libxml2/-/commit/81cef8c5 ### CVE-2025-49795 A NULL pointer dereference vulnerability was found in libxml2 when processing XPath XML expressions. This flaw allows an attacker to craft a malicious XML input to libxml2, leading to a denial of service. NVD claims a severity of 7.5 High (CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H) Fixed by applying https://gitlab.gnome.org/GNOME/libxml2/-/commit/62048278 ### CVE-2025-49796 A vulnerability was found in libxml2. Processing certain sch:name elements from the input XML file can trigger a memory corruption issue. This flaw allows an attacker to craft a malicious XML input file that can lead libxml to crash, resulting in a denial of service or other possible undefined behavior due to sensitive data being corrupted in memory. NVD claims a severity of 9.1 Critical (CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:H) Fixed by applying https://gitlab.gnome.org/GNOME/libxml2/-/commit/81cef8c5 ## Affected Versions - Nokogiri < 1.18.9 when using CRuby (MRI) with vendored libxml2 ## Patched Versions - Nokogiri >= 1.18.9 ## Mitigation Upgrade to Nokogiri v1.18.9 or later. Users who are unable to upgrade Nokogiri may also choose a more complicated mitigation: compile and link Nokogiri against patched external libxml2 libraries which will also address these same issues. ## References - https://github.com/sparklemotion/nokogiri/pull/3526 - https://nvd.nist.gov/vuln/detail/CVE-2025-6021 - https://nvd.nist.gov/vuln/detail/CVE-2025-6170 - https://nvd.nist.gov/vuln/detail/CVE-2025-49794 - https://nvd.nist.gov/vuln/detail/CVE-2025-49795 - https://nvd.nist.gov/vuln/detail/CVE-2025-49796
1.18.9
Affected by 1 other vulnerability.
VCID-c6hb-sbhx-zqac
Aliases:
GHSA-r3w4-36x6-7r99
Duplicate Advisory: Nokogiri updates packaged libxml2 to v2.12.7 to resolve CVE-2024-34459 ## Duplicate Advisory This advisory has been withdrawn because it is a duplicate of GHSA-r95h-9x8f-r3f7. This link is maintained to preserve external references. ## Original Description ## Summary Nokogiri v1.16.5 upgrades its dependency libxml2 to [2.12.7](https://gitlab.gnome.org/GNOME/libxml2/-/releases/v2.12.7) from 2.12.6. libxml2 v2.12.7 addresses CVE-2024-34459: - described at https://gitlab.gnome.org/GNOME/libxml2/-/issues/720 - patched by https://gitlab.gnome.org/GNOME/libxml2/-/commit/2876ac53 ## Impact There is no impact to Nokogiri users because the issue is present only in libxml2's `xmllint` tool which Nokogiri does not provide or expose. ## Timeline - 2024-05-13 05:57 EDT, libxml2 2.12.7 release is announced - 2024-05-13 08:30 EDT, nokogiri maintainers begin triage - 2024-05-13 10:05 EDT, nokogiri [v1.16.5 is released](https://github.com/sparklemotion/nokogiri/releases/tag/v1.16.5) and this GHSA made public
1.16.5
Affected by 6 other vulnerabilities.
VCID-eb6k-ppfd-m7a3
Aliases:
CVE-2022-40304
Multiple vulnerabilities have been found in libxml2, the worst of which could result in arbitrary code execution.
1.13.9
Affected by 12 other vulnerabilities.
VCID-ghbk-uumc-dug3
Aliases:
GHSA-r95h-9x8f-r3f7
Nokogiri updates packaged libxml2 to v2.12.7 to resolve CVE-2024-34459 ## Summary Nokogiri v1.16.5 upgrades its dependency libxml2 to [2.12.7](https://gitlab.gnome.org/GNOME/libxml2/-/releases/v2.12.7) from 2.12.6. libxml2 v2.12.7 addresses CVE-2024-34459: - described at https://gitlab.gnome.org/GNOME/libxml2/-/issues/720 - patched by https://gitlab.gnome.org/GNOME/libxml2/-/commit/2876ac53 ## Impact There is no impact to Nokogiri users because the issue is present only in libxml2's `xmllint` tool which Nokogiri does not provide or expose. ## Timeline - 2024-05-13 05:57 EDT, libxml2 2.12.7 release is announced - 2024-05-13 08:30 EDT, nokogiri maintainers begin triage - 2024-05-13 10:05 EDT, nokogiri [v1.16.5 is released](https://github.com/sparklemotion/nokogiri/releases/tag/v1.16.5) and this GHSA made public
1.16.5
Affected by 6 other vulnerabilities.
VCID-hzjv-gf8n-jka2
Aliases:
GHSA-vcc3-rw6f-jv97
Duplicate Advisory: Use-after-free in libxml2 via Nokogiri::XML::Reader # Duplicate Advisory This advisory has been withdrawn because it is a duplicate of GHSA-xc9x-jj77-9p9j. This link is maintained to preserve external references. # Original Description ### Summary Nokogiri upgrades its dependency libxml2 as follows: - v1.15.6 upgrades libxml2 to 2.11.7 from 2.11.6 - v1.16.2 upgrades libxml2 to 2.12.5 from 2.12.4 libxml2 v2.11.7 and v2.12.5 address the following vulnerability: CVE-2024-25062 / https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2024-25062 - described at https://gitlab.gnome.org/GNOME/libxml2/-/issues/604 - patched by https://gitlab.gnome.org/GNOME/libxml2/-/commit/92721970 Please note that this advisory only applies to the CRuby implementation of Nokogiri, and only if the packaged libraries are being used. If you've overridden defaults at installation time to use system libraries instead of packaged libraries, you should instead pay attention to your distro's libxml2 release announcements. JRuby users are not affected. ### Severity The Nokogiri maintainers have evaluated this as **Moderate**. ### Impact From the CVE description, this issue applies to the `xmlTextReader` module (which underlies `Nokogiri::XML::Reader`): > When using the XML Reader interface with DTD validation and XInclude expansion enabled, > processing crafted XML documents can lead to an xmlValidatePopElement use-after-free. ### Mitigation Upgrade to Nokogiri `~> 1.15.6` or `>= 1.16.2`. Users who are unable to upgrade Nokogiri may also choose a more complicated mitigation: compile and link Nokogiri against patched external libxml2 libraries which will also address these same issues.
1.15.6
Affected by 8 other vulnerabilities.
1.16.2
Affected by 8 other vulnerabilities.
VCID-jfh3-1sgm-7ug2
Aliases:
GHSA-wx95-c6cv-8532
Nokogiri does not check the return value from xmlC14NExecute ## Summary Nokogiri's CRuby extension fails to check the return value from `xmlC14NExecute` in the method `Nokogiri::XML::Document#canonicalize` and `Nokogiri::XML::Node#canonicalize`. When canonicalization fails, an empty string is returned instead of raising an exception. This incorrect return value may allow downstream libraries to accept invalid or incomplete canonicalized XML, which has been demonstrated to enable signature validation bypass in SAML libraries. JRuby is not affected, as the Java implementation correctly raises `RuntimeError` on canonicalization failure. ## Mitigation Upgrade to Nokogiri `>= 1.19.1`. ## Severity The maintainers have assessed this as **Medium** severity. Nokogiri itself is a parsing library without a clear security boundary related to canonicalization, so the direct impact is that a method returns incorrect data on invalid input. However, this behavior was exploited in practice to bypass SAML signature validation in downstream libraries (see References). ## Credit This vulnerability was responsibly reported by HackerOne researcher `d4d`.
1.19.1
Affected by 0 other vulnerabilities.
VCID-q732-nexj-1ue6
Aliases:
GHSA-5mwf-688x-mr7x
Duplicate Advisory: Nokogiri updates packaged libxml2 to 2.13.6 to resolve CVE-2025-24928 and CVE-2024-56171 # Duplicate Advisory This advisory has been withdrawn because it is a duplicate of GHSA-vvfq-8hwr-qm4m. This link is maintained to preserve external references. # Original Description ## Summary Nokogiri v1.18.3 upgrades its dependency libxml2 to [v2.13.6](https://gitlab.gnome.org/GNOME/libxml2/-/releases/v2.13.6). libxml2 v2.13.6 addresses: - CVE-2025-24928 - described at https://gitlab.gnome.org/GNOME/libxml2/-/issues/847 - CVE-2024-56171 - described at https://gitlab.gnome.org/GNOME/libxml2/-/issues/828 ## Impact ### CVE-2025-24928 Stack-buffer overflow is possible when reporting DTD validation errors if the input contains a long (~3kb) QName prefix. ### CVE-2024-56171 Use-after-free is possible during validation against untrusted XML Schemas (.xsd) and, potentially, validation of untrusted documents against trusted Schemas if they make use of `xsd:keyref` in combination with recursively defined types that have additional identity constraints.
1.18.3
Affected by 4 other vulnerabilities.
VCID-snr1-kaug-43aa
Aliases:
CVE-2022-29181
GHSA-xh29-r2w5-wx8m
Multiple vulnerabilities have been discovered in Nokogiri, the worst of which could result in denial of service.
1.13.6
Affected by 14 other vulnerabilities.
VCID-udew-3gre-13hy
Aliases:
CVE-2022-40303
Multiple vulnerabilities have been found in libxml2, the worst of which could result in arbitrary code execution.
1.13.9
Affected by 12 other vulnerabilities.
VCID-uf9q-1ds5-wbev
Aliases:
GHSA-mrxw-mxhj-p664
Nokogiri updates packaged libxslt to v1.1.43 to resolve multiple CVEs ## Summary Nokogiri v1.18.4 upgrades its dependency libxslt to [v1.1.43](https://gitlab.gnome.org/GNOME/libxslt/-/releases/v1.1.43). libxslt v1.1.43 resolves: - CVE-2025-24855: Fix use-after-free of XPath context node - CVE-2024-55549: Fix UAF related to excluded namespaces ## Impact ### CVE-2025-24855 - "Use-after-free due to xsltEvalXPathStringNs leaking xpathCtxt->node" - MITRE has rated this 7.8 High CVSS:3.1/AV:L/AC:H/PR:N/UI:N/S:C/C:N/I:H/A:H - Upstream report: https://gitlab.gnome.org/GNOME/libxslt/-/issues/128 - NVD entry: https://nvd.nist.gov/vuln/detail/CVE-2025-24855 ### CVE-2024-55549 - "Use-after-free related to excluded result prefixes" - MITRE has rated this 7.8 High CVSS:3.1/AV:L/AC:H/PR:N/UI:N/S:C/C:N/I:H/A:H - Upstream report: https://gitlab.gnome.org/GNOME/libxslt/-/issues/127 - NVD entry: https://nvd.nist.gov/vuln/detail/CVE-2024-55549
1.18.4
Affected by 3 other vulnerabilities.
VCID-w8jf-tsmr-g7cd
Aliases:
GHSA-5w6v-399v-w3cc
Nokogiri updates packaged libxml2 to v2.13.8 to resolve CVE-2025-32414 and CVE-2025-32415 ## Summary Nokogiri v1.18.8 upgrades its dependency libxml2 to [v2.13.8](https://gitlab.gnome.org/GNOME/libxml2/-/releases/v2.13.8). libxml2 v2.13.8 addresses: - CVE-2025-32414 - described at https://gitlab.gnome.org/GNOME/libxml2/-/issues/889 - CVE-2025-32415 - described at https://gitlab.gnome.org/GNOME/libxml2/-/issues/890 ## Impact ### CVE-2025-32414: No impact In libxml2 before 2.13.8 and 2.14.x before 2.14.2, out-of-bounds memory access can occur in the Python API (Python bindings) because of an incorrect return value. This occurs in xmlPythonFileRead and xmlPythonFileReadRaw because of a difference between bytes and characters. **There is no impact** from this CVE for Nokogiri users. ### CVE-2025-32415: Low impact In libxml2 before 2.13.8 and 2.14.x before 2.14.2, xmlSchemaIDCFillNodeTables in xmlschemas.c has a heap-based buffer under-read. To exploit this, a crafted XML document must be validated against an XML schema with certain identity constraints, or a crafted XML schema must be used. In the upstream issue, further context is provided by the maintainer: > The bug affects validation against untrusted XML Schemas (.xsd) and validation of untrusted > documents against trusted Schemas if they make use of xsd:keyref in combination with recursively > defined types that have additional identity constraints. MITRE has published a severity score of 2.9 LOW (CVSS:3.1/AV:L/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:L) for this CVE.
1.18.8
Affected by 2 other vulnerabilities.
VCID-y5vb-sn4p-eqd9
Aliases:
GHSA-pxvg-2qj5-37jq
GMS-2023-1115
Nokogiri updates packaged libxml2 to v2.10.4 to resolve multiple CVEs ### Summary Nokogiri v1.14.3 upgrades the packaged version of its dependency libxml2 to [v2.10.4](https://gitlab.gnome.org/GNOME/libxml2/-/releases/v2.10.4) from v2.10.3. libxml2 v2.10.4 addresses the following known vulnerabilities: - [CVE-2023-29469](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-29469): Hashing of empty dict strings isn't deterministic - [CVE-2023-28484](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-28484): Fix null deref in xmlSchemaFixupComplexType - Schemas: Fix null-pointer-deref in xmlSchemaCheckCOSSTDerivedOK Please note that this advisory only applies to the CRuby implementation of Nokogiri `< 1.14.3`, and only if the _packaged_ libraries are being used. If you've overridden defaults at installation time to use _system_ libraries instead of packaged libraries, you should instead pay attention to your distro's `libxml2` release announcements. ### Mitigation Upgrade to Nokogiri `>= 1.14.3`. Users who are unable to upgrade Nokogiri may also choose a more complicated mitigation: compile and link Nokogiri against external libraries libxml2 `>= 2.10.4` which will also address these same issues. ### Impact No public information has yet been published about the security-related issues other than the upstream commits. Examination of those changesets indicate that the more serious issues relate to libxml2 dereferencing NULL pointers and potentially segfaulting while parsing untrusted inputs. The commits can be examined at: - [[CVE-2023-29469] Hashing of empty dict strings isn't deterministic (09a2dd45) · Commits · GNOME / libxml2 · GitLab](https://gitlab.gnome.org/GNOME/libxml2/-/commit/09a2dd453007f9c7205274623acdd73747c22d64) - [[CVE-2023-28484] Fix null deref in xmlSchemaFixupComplexType (647e072e) · Commits · GNOME / libxml2 · GitLab](https://gitlab.gnome.org/GNOME/libxml2/-/commit/647e072ea0a2f12687fa05c172f4c4713fdb0c4f) - [schemas: Fix null-pointer-deref in xmlSchemaCheckCOSSTDerivedOK (4c6922f7) · Commits · GNOME / libxml2 · GitLab](https://gitlab.gnome.org/GNOME/libxml2/-/commit/4c6922f763ad958c48ff66f82823ae21f2e92ee6)
1.14.3
Affected by 10 other vulnerabilities.
VCID-yeku-1zjh-kbea
Aliases:
GHSA-vvfq-8hwr-qm4m
Nokogiri updates packaged libxml2 to 2.13.6 to resolve CVE-2025-24928 and CVE-2024-56171 ## Summary Nokogiri v1.18.3 upgrades its dependency libxml2 to [v2.13.6](https://gitlab.gnome.org/GNOME/libxml2/-/releases/v2.13.6). libxml2 v2.13.6 addresses: - CVE-2025-24928 - described at https://gitlab.gnome.org/GNOME/libxml2/-/issues/847 - CVE-2024-56171 - described at https://gitlab.gnome.org/GNOME/libxml2/-/issues/828 ## Impact ### CVE-2025-24928 Stack-buffer overflow is possible when reporting DTD validation errors if the input contains a long (~3kb) QName prefix. ### CVE-2024-56171 Use-after-free is possible during validation against untrusted XML Schemas (.xsd) and, potentially, validation of untrusted documents against trusted Schemas if they make use of `xsd:keyref` in combination with recursively defined types that have additional identity constraints.
1.18.3
Affected by 4 other vulnerabilities.
Vulnerabilities fixed by this package (1)
Vulnerability Summary Aliases
VCID-m7km-hbm9-23h4 Integer Overflow or Wraparound in libxml2 affects Nokogiri ### Summary Nokogiri v1.13.5 upgrades the packaged version of its dependency libxml2 from v2.9.13 to [v2.9.14](https://gitlab.gnome.org/GNOME/libxml2/-/releases/v2.9.14). libxml2 v2.9.14 addresses [CVE-2022-29824](https://nvd.nist.gov/vuln/detail/CVE-2022-29824). This version also includes several security-related bug fixes for which CVEs were not created, including a potential double-free, potential memory leaks, and integer-overflow. Please note that this advisory only applies to the CRuby implementation of Nokogiri `< 1.13.5`, and only if the _packaged_ libraries are being used. If you've overridden defaults at installation time to use _system_ libraries instead of packaged libraries, you should instead pay attention to your distro's `libxml2` and `libxslt` release announcements. ### Mitigation Upgrade to Nokogiri `>= 1.13.5`. Users who are unable to upgrade Nokogiri may also choose a more complicated mitigation: compile and link Nokogiri against external libraries libxml2 `>= 2.9.14` which will also address these same issues. ### Impact #### libxml2 [CVE-2022-29824](https://nvd.nist.gov/vuln/detail/CVE-2022-29824) - **CVSS3 score**: - Unspecified upstream - Nokogiri maintainers evaluate at 8.6 (High) ([CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:H](https://www.first.org/cvss/calculator/3.1#CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:H)). Note that this is different from the CVSS assessed by NVD. - **Type**: Denial of service, information disclosure - **Description**: In libxml2 before 2.9.14, several buffer handling functions in buf.c (xmlBuf*) and tree.c (xmlBuffer*) don't check for integer overflows. This can result in out-of-bounds memory writes. Exploitation requires a victim to open a crafted, multi-gigabyte XML file. Other software using libxml2's buffer functions, for example libxslt through 1.1.35, is affected as well. - **Fixed**: https://gitlab.gnome.org/GNOME/libxml2/-/commit/2554a24 All versions of libml2 prior to v2.9.14 are affected. Applications parsing or serializing multi-gigabyte documents (in excess of INT_MAX bytes) may be vulnerable to an integer overflow bug in buffer handling that could lead to exposure of confidential data, modification of unrelated data, or a segmentation fault resulting in a denial-of-service. ### References - [libxml2 v2.9.14 release notes](https://gitlab.gnome.org/GNOME/libxml2/-/releases/v2.9.14) - [CVE-2022-29824](https://nvd.nist.gov/vuln/detail/CVE-2022-29824) - [CWE-119: Improper Restriction of Operations within the Bounds of a Memory Buffer](https://cwe.mitre.org/data/definitions/119.html) GHSA-cgx6-hpwq-fhv5
GMS-2022-1438

Date Actor Action Vulnerability Source VulnerableCode Version
2026-04-17T00:18:18.418590+00:00 GitLab Importer Affected by VCID-jfh3-1sgm-7ug2 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/gem/nokogiri/GHSA-wx95-c6cv-8532.yml 38.4.0
2026-04-16T23:33:39.076111+00:00 GitLab Importer Affected by VCID-6r5w-pgkx-v3cb https://gitlab.com/gitlab-org/advisories-community/-/blob/main/gem/nokogiri/GHSA-353f-x4gh-cqq8.yml 38.4.0
2026-04-16T23:27:03.519179+00:00 GitLab Importer Affected by VCID-w8jf-tsmr-g7cd https://gitlab.com/gitlab-org/advisories-community/-/blob/main/gem/nokogiri/GHSA-5w6v-399v-w3cc.yml 38.4.0
2026-04-16T23:23:03.357627+00:00 GitLab Importer Affected by VCID-uf9q-1ds5-wbev https://gitlab.com/gitlab-org/advisories-community/-/blob/main/gem/nokogiri/GHSA-mrxw-mxhj-p664.yml 38.4.0
2026-04-16T23:21:19.618660+00:00 GitLab Importer Affected by VCID-q732-nexj-1ue6 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/gem/nokogiri/GHSA-5mwf-688x-mr7x.yml 38.4.0
2026-04-16T23:21:16.109837+00:00 GitLab Importer Affected by VCID-yeku-1zjh-kbea https://gitlab.com/gitlab-org/advisories-community/-/blob/main/gem/nokogiri/GHSA-vvfq-8hwr-qm4m.yml 38.4.0
2026-04-16T22:58:13.154277+00:00 GitLab Importer Affected by VCID-c6hb-sbhx-zqac https://gitlab.com/gitlab-org/advisories-community/-/blob/main/gem/nokogiri/GHSA-r3w4-36x6-7r99.yml 38.4.0
2026-04-16T22:57:51.682970+00:00 GitLab Importer Affected by VCID-ghbk-uumc-dug3 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/gem/nokogiri/GHSA-r95h-9x8f-r3f7.yml 38.4.0
2026-04-16T22:54:05.776259+00:00 GitLab Importer Affected by VCID-hzjv-gf8n-jka2 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/gem/nokogiri/GHSA-vcc3-rw6f-jv97.yml 38.4.0
2026-04-16T22:49:59.648186+00:00 GitLab Importer Affected by VCID-365e-j8ta-h7cn https://gitlab.com/gitlab-org/advisories-community/-/blob/main/gem/nokogiri/GHSA-xc9x-jj77-9p9j.yml 38.4.0
2026-04-16T22:26:39.322994+00:00 GitLab Importer Affected by VCID-y5vb-sn4p-eqd9 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/gem/nokogiri/GMS-2023-1115.yml 38.4.0
2026-04-16T22:16:44.782234+00:00 GitLab Importer Affected by VCID-eb6k-ppfd-m7a3 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/gem/nokogiri/CVE-2022-40304.yml 38.4.0
2026-04-16T22:16:42.424488+00:00 GitLab Importer Affected by VCID-udew-3gre-13hy https://gitlab.com/gitlab-org/advisories-community/-/blob/main/gem/nokogiri/CVE-2022-40303.yml 38.4.0
2026-04-16T22:13:10.904149+00:00 GitLab Importer Affected by VCID-43qu-922g-myca https://gitlab.com/gitlab-org/advisories-community/-/blob/main/gem/nokogiri/GMS-2022-5550.yml 38.4.0
2026-04-16T21:55:24.913585+00:00 GitLab Importer Affected by VCID-snr1-kaug-43aa https://gitlab.com/gitlab-org/advisories-community/-/blob/main/gem/nokogiri/CVE-2022-29181.yml 38.4.0
2026-04-16T21:54:55.147203+00:00 GitLab Importer Fixing VCID-m7km-hbm9-23h4 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/gem/nokogiri/GMS-2022-1438.yml 38.4.0
2026-04-16T17:41:26.580513+00:00 Ruby Importer Affected by VCID-6r5w-pgkx-v3cb https://github.com/rubysec/ruby-advisory-db/blob/master/gems/nokogiri/GHSA-353f-x4gh-cqq8.yml 38.4.0
2026-04-16T17:41:22.376948+00:00 Ruby Importer Affected by VCID-w8jf-tsmr-g7cd https://github.com/rubysec/ruby-advisory-db/blob/master/gems/nokogiri/GHSA-5w6v-399v-w3cc.yml 38.4.0
2026-04-16T17:41:18.694059+00:00 Ruby Importer Affected by VCID-yeku-1zjh-kbea https://github.com/rubysec/ruby-advisory-db/blob/master/gems/nokogiri/GHSA-vvfq-8hwr-qm4m.yml 38.4.0
2026-04-16T17:40:58.699845+00:00 Ruby Importer Affected by VCID-ghbk-uumc-dug3 https://github.com/rubysec/ruby-advisory-db/blob/master/gems/nokogiri/GHSA-r95h-9x8f-r3f7.yml 38.4.0
2026-04-16T17:40:49.988345+00:00 Ruby Importer Affected by VCID-365e-j8ta-h7cn https://github.com/rubysec/ruby-advisory-db/blob/master/gems/nokogiri/GHSA-xc9x-jj77-9p9j.yml 38.4.0
2026-04-16T17:40:10.993338+00:00 Ruby Importer Affected by VCID-y5vb-sn4p-eqd9 https://github.com/rubysec/ruby-advisory-db/blob/master/gems/nokogiri/GHSA-pxvg-2qj5-37jq.yml 38.4.0
2026-04-16T17:39:45.375005+00:00 Ruby Importer Affected by VCID-43qu-922g-myca https://github.com/rubysec/ruby-advisory-db/blob/master/gems/nokogiri/GHSA-2qc6-mcvw-92cw.yml 38.4.0
2026-04-12T01:42:36.804407+00:00 GitLab Importer Affected by VCID-jfh3-1sgm-7ug2 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/gem/nokogiri/GHSA-wx95-c6cv-8532.yml 38.3.0
2026-04-12T00:53:42.276483+00:00 GitLab Importer Affected by VCID-6r5w-pgkx-v3cb https://gitlab.com/gitlab-org/advisories-community/-/blob/main/gem/nokogiri/GHSA-353f-x4gh-cqq8.yml 38.3.0
2026-04-12T00:46:32.601231+00:00 GitLab Importer Affected by VCID-w8jf-tsmr-g7cd https://gitlab.com/gitlab-org/advisories-community/-/blob/main/gem/nokogiri/GHSA-5w6v-399v-w3cc.yml 38.3.0
2026-04-12T00:42:15.080414+00:00 GitLab Importer Affected by VCID-uf9q-1ds5-wbev https://gitlab.com/gitlab-org/advisories-community/-/blob/main/gem/nokogiri/GHSA-mrxw-mxhj-p664.yml 38.3.0
2026-04-12T00:40:22.040159+00:00 GitLab Importer Affected by VCID-q732-nexj-1ue6 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/gem/nokogiri/GHSA-5mwf-688x-mr7x.yml 38.3.0
2026-04-12T00:40:18.196747+00:00 GitLab Importer Affected by VCID-yeku-1zjh-kbea https://gitlab.com/gitlab-org/advisories-community/-/blob/main/gem/nokogiri/GHSA-vvfq-8hwr-qm4m.yml 38.3.0
2026-04-12T00:16:19.199483+00:00 GitLab Importer Affected by VCID-c6hb-sbhx-zqac https://gitlab.com/gitlab-org/advisories-community/-/blob/main/gem/nokogiri/GHSA-r3w4-36x6-7r99.yml 38.3.0
2026-04-12T00:15:56.418291+00:00 GitLab Importer Affected by VCID-ghbk-uumc-dug3 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/gem/nokogiri/GHSA-r95h-9x8f-r3f7.yml 38.3.0
2026-04-12T00:12:31.434638+00:00 GitLab Importer Affected by VCID-hzjv-gf8n-jka2 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/gem/nokogiri/GHSA-vcc3-rw6f-jv97.yml 38.3.0
2026-04-12T00:09:38.033475+00:00 GitLab Importer Affected by VCID-365e-j8ta-h7cn https://gitlab.com/gitlab-org/advisories-community/-/blob/main/gem/nokogiri/GHSA-xc9x-jj77-9p9j.yml 38.3.0
2026-04-11T23:44:57.931737+00:00 GitLab Importer Affected by VCID-y5vb-sn4p-eqd9 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/gem/nokogiri/GMS-2023-1115.yml 38.3.0
2026-04-11T23:34:03.160044+00:00 GitLab Importer Affected by VCID-eb6k-ppfd-m7a3 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/gem/nokogiri/CVE-2022-40304.yml 38.3.0
2026-04-11T23:34:00.589416+00:00 GitLab Importer Affected by VCID-udew-3gre-13hy https://gitlab.com/gitlab-org/advisories-community/-/blob/main/gem/nokogiri/CVE-2022-40303.yml 38.3.0
2026-04-11T23:30:06.592437+00:00 GitLab Importer Affected by VCID-43qu-922g-myca https://gitlab.com/gitlab-org/advisories-community/-/blob/main/gem/nokogiri/GMS-2022-5550.yml 38.3.0
2026-04-11T23:10:48.340289+00:00 GitLab Importer Affected by VCID-snr1-kaug-43aa https://gitlab.com/gitlab-org/advisories-community/-/blob/main/gem/nokogiri/CVE-2022-29181.yml 38.3.0
2026-04-11T23:10:14.093014+00:00 GitLab Importer Fixing VCID-m7km-hbm9-23h4 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/gem/nokogiri/GMS-2022-1438.yml 38.3.0
2026-04-11T21:39:16.429876+00:00 Ruby Importer Affected by VCID-6r5w-pgkx-v3cb https://github.com/rubysec/ruby-advisory-db/blob/master/gems/nokogiri/GHSA-353f-x4gh-cqq8.yml 38.3.0
2026-04-11T21:39:08.975284+00:00 Ruby Importer Affected by VCID-w8jf-tsmr-g7cd https://github.com/rubysec/ruby-advisory-db/blob/master/gems/nokogiri/GHSA-5w6v-399v-w3cc.yml 38.3.0
2026-04-11T21:39:00.840095+00:00 Ruby Importer Affected by VCID-yeku-1zjh-kbea https://github.com/rubysec/ruby-advisory-db/blob/master/gems/nokogiri/GHSA-vvfq-8hwr-qm4m.yml 38.3.0
2026-04-11T21:38:21.206006+00:00 Ruby Importer Affected by VCID-ghbk-uumc-dug3 https://github.com/rubysec/ruby-advisory-db/blob/master/gems/nokogiri/GHSA-r95h-9x8f-r3f7.yml 38.3.0
2026-04-11T21:38:05.996002+00:00 Ruby Importer Affected by VCID-365e-j8ta-h7cn https://github.com/rubysec/ruby-advisory-db/blob/master/gems/nokogiri/GHSA-xc9x-jj77-9p9j.yml 38.3.0
2026-04-11T21:37:23.656216+00:00 Ruby Importer Affected by VCID-y5vb-sn4p-eqd9 https://github.com/rubysec/ruby-advisory-db/blob/master/gems/nokogiri/GHSA-pxvg-2qj5-37jq.yml 38.3.0
2026-04-11T21:36:55.647696+00:00 Ruby Importer Affected by VCID-43qu-922g-myca https://github.com/rubysec/ruby-advisory-db/blob/master/gems/nokogiri/GHSA-2qc6-mcvw-92cw.yml 38.3.0
2026-04-05T02:25:46.396790+00:00 GitLab Importer Affected by VCID-43qu-922g-myca https://gitlab.com/gitlab-org/advisories-community/-/blob/main/gem/nokogiri/GMS-2022-5550.yml 38.1.0
2026-04-04T14:31:55.324905+00:00 GHSA Importer Fixing VCID-m7km-hbm9-23h4 https://github.com/advisories/GHSA-cgx6-hpwq-fhv5 38.1.0
2026-04-03T21:26:09.935187+00:00 GitLab Importer Fixing VCID-m7km-hbm9-23h4 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/gem/nokogiri/GMS-2022-1438.yml 38.1.0
2026-04-03T01:51:26.799217+00:00 GitLab Importer Affected by VCID-jfh3-1sgm-7ug2 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/gem/nokogiri/GHSA-wx95-c6cv-8532.yml 38.1.0
2026-04-03T01:01:49.698882+00:00 GitLab Importer Affected by VCID-6r5w-pgkx-v3cb https://gitlab.com/gitlab-org/advisories-community/-/blob/main/gem/nokogiri/GHSA-353f-x4gh-cqq8.yml 38.1.0
2026-04-03T00:54:32.427300+00:00 GitLab Importer Affected by VCID-w8jf-tsmr-g7cd https://gitlab.com/gitlab-org/advisories-community/-/blob/main/gem/nokogiri/GHSA-5w6v-399v-w3cc.yml 38.1.0
2026-04-03T00:50:11.163620+00:00 GitLab Importer Affected by VCID-uf9q-1ds5-wbev https://gitlab.com/gitlab-org/advisories-community/-/blob/main/gem/nokogiri/GHSA-mrxw-mxhj-p664.yml 38.1.0
2026-04-03T00:48:16.868524+00:00 GitLab Importer Affected by VCID-q732-nexj-1ue6 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/gem/nokogiri/GHSA-5mwf-688x-mr7x.yml 38.1.0
2026-04-03T00:48:13.473848+00:00 GitLab Importer Affected by VCID-yeku-1zjh-kbea https://gitlab.com/gitlab-org/advisories-community/-/blob/main/gem/nokogiri/GHSA-vvfq-8hwr-qm4m.yml 38.1.0
2026-04-03T00:23:19.901522+00:00 GitLab Importer Affected by VCID-c6hb-sbhx-zqac https://gitlab.com/gitlab-org/advisories-community/-/blob/main/gem/nokogiri/GHSA-r3w4-36x6-7r99.yml 38.1.0
2026-04-03T00:22:58.339107+00:00 GitLab Importer Affected by VCID-ghbk-uumc-dug3 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/gem/nokogiri/GHSA-r95h-9x8f-r3f7.yml 38.1.0
2026-04-03T00:18:50.896397+00:00 GitLab Importer Affected by VCID-hzjv-gf8n-jka2 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/gem/nokogiri/GHSA-vcc3-rw6f-jv97.yml 38.1.0
2026-04-03T00:14:32.405488+00:00 GitLab Importer Affected by VCID-365e-j8ta-h7cn https://gitlab.com/gitlab-org/advisories-community/-/blob/main/gem/nokogiri/GHSA-xc9x-jj77-9p9j.yml 38.1.0
2026-04-02T23:48:36.079061+00:00 GitLab Importer Affected by VCID-y5vb-sn4p-eqd9 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/gem/nokogiri/GMS-2023-1115.yml 38.1.0
2026-04-02T23:38:55.330726+00:00 GitLab Importer Affected by VCID-eb6k-ppfd-m7a3 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/gem/nokogiri/CVE-2022-40304.yml 38.1.0
2026-04-02T23:38:53.146431+00:00 GitLab Importer Affected by VCID-udew-3gre-13hy https://gitlab.com/gitlab-org/advisories-community/-/blob/main/gem/nokogiri/CVE-2022-40303.yml 38.1.0
2026-04-02T23:19:20.879233+00:00 GitLab Importer Affected by VCID-snr1-kaug-43aa https://gitlab.com/gitlab-org/advisories-community/-/blob/main/gem/nokogiri/CVE-2022-29181.yml 38.1.0
2026-04-02T19:36:52.775386+00:00 Ruby Importer Affected by VCID-6r5w-pgkx-v3cb https://github.com/rubysec/ruby-advisory-db/blob/master/gems/nokogiri/GHSA-353f-x4gh-cqq8.yml 38.1.0
2026-04-02T19:36:47.890485+00:00 Ruby Importer Affected by VCID-w8jf-tsmr-g7cd https://github.com/rubysec/ruby-advisory-db/blob/master/gems/nokogiri/GHSA-5w6v-399v-w3cc.yml 38.1.0
2026-04-02T19:36:43.701662+00:00 Ruby Importer Affected by VCID-yeku-1zjh-kbea https://github.com/rubysec/ruby-advisory-db/blob/master/gems/nokogiri/GHSA-vvfq-8hwr-qm4m.yml 38.1.0
2026-04-02T19:36:17.773243+00:00 Ruby Importer Affected by VCID-ghbk-uumc-dug3 https://github.com/rubysec/ruby-advisory-db/blob/master/gems/nokogiri/GHSA-r95h-9x8f-r3f7.yml 38.1.0
2026-04-02T19:36:04.943089+00:00 Ruby Importer Affected by VCID-365e-j8ta-h7cn https://github.com/rubysec/ruby-advisory-db/blob/master/gems/nokogiri/GHSA-xc9x-jj77-9p9j.yml 38.1.0
2026-04-02T19:35:25.989642+00:00 Ruby Importer Affected by VCID-y5vb-sn4p-eqd9 https://github.com/rubysec/ruby-advisory-db/blob/master/gems/nokogiri/GHSA-pxvg-2qj5-37jq.yml 38.1.0
2026-04-02T19:35:02.037671+00:00 Ruby Importer Affected by VCID-43qu-922g-myca https://github.com/rubysec/ruby-advisory-db/blob/master/gems/nokogiri/GHSA-2qc6-mcvw-92cw.yml 38.1.0
2026-04-01T18:11:56.040502+00:00 GitLab Importer Affected by VCID-y5vb-sn4p-eqd9 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/gem/nokogiri/GMS-2023-1115.yml 38.0.0
2026-04-01T18:01:15.690661+00:00 GitLab Importer Affected by VCID-eb6k-ppfd-m7a3 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/gem/nokogiri/CVE-2022-40304.yml 38.0.0
2026-04-01T18:01:13.409593+00:00 GitLab Importer Affected by VCID-udew-3gre-13hy https://gitlab.com/gitlab-org/advisories-community/-/blob/main/gem/nokogiri/CVE-2022-40303.yml 38.0.0
2026-04-01T17:39:48.436501+00:00 GitLab Importer Affected by VCID-snr1-kaug-43aa https://gitlab.com/gitlab-org/advisories-community/-/blob/main/gem/nokogiri/CVE-2022-29181.yml 38.0.0
2026-04-01T15:54:22.611128+00:00 Ruby Importer Affected by VCID-6r5w-pgkx-v3cb https://github.com/rubysec/ruby-advisory-db/blob/master/gems/nokogiri/GHSA-353f-x4gh-cqq8.yml 38.0.0
2026-04-01T15:54:14.490574+00:00 Ruby Importer Affected by VCID-w8jf-tsmr-g7cd https://github.com/rubysec/ruby-advisory-db/blob/master/gems/nokogiri/GHSA-5w6v-399v-w3cc.yml 38.0.0
2026-04-01T15:54:07.475314+00:00 Ruby Importer Affected by VCID-yeku-1zjh-kbea https://github.com/rubysec/ruby-advisory-db/blob/master/gems/nokogiri/GHSA-vvfq-8hwr-qm4m.yml 38.0.0
2026-04-01T15:53:28.650244+00:00 Ruby Importer Affected by VCID-ghbk-uumc-dug3 https://github.com/rubysec/ruby-advisory-db/blob/master/gems/nokogiri/GHSA-r95h-9x8f-r3f7.yml 38.0.0
2026-04-01T15:53:13.919921+00:00 Ruby Importer Affected by VCID-365e-j8ta-h7cn https://github.com/rubysec/ruby-advisory-db/blob/master/gems/nokogiri/GHSA-xc9x-jj77-9p9j.yml 38.0.0
2026-04-01T15:52:29.606251+00:00 Ruby Importer Affected by VCID-y5vb-sn4p-eqd9 https://github.com/rubysec/ruby-advisory-db/blob/master/gems/nokogiri/GHSA-pxvg-2qj5-37jq.yml 38.0.0
2026-04-01T15:52:02.909679+00:00 Ruby Importer Affected by VCID-43qu-922g-myca https://github.com/rubysec/ruby-advisory-db/blob/master/gems/nokogiri/GHSA-2qc6-mcvw-92cw.yml 38.0.0
2026-04-01T13:09:14.127028+00:00 GithubOSV Importer Fixing VCID-m7km-hbm9-23h4 https://github.com/github/advisory-database/blob/main/advisories/github-reviewed/2022/05/GHSA-cgx6-hpwq-fhv5/GHSA-cgx6-hpwq-fhv5.json 38.0.0