fast-xml-parser allows users to validate XML, parse XML to JS object, or build XML from JS object without C/C++ based libraries and no callback. In versions 5.0.9 through 5.3.3, a RangeError vulnerability exists in the numeric entity processing of fast-xml-parser when parsing XML with out-of-range entity code points (e.g., � or �). This causes the parser to throw an uncaught exception, crashing any application that processes untrusted XML input. Version 5.3.4 fixes the issue.
The product receives input or data, but it does not validate or incorrectly validates that the input has the properties that are required to process the data safely and correctly.
| Name | Vendor | Start Version | End Version |
|---|---|---|---|
| Fast-xml-parser | Naturalintelligence | 5.0.9 (including) | 5.3.4 (excluding) |
| Red Hat Advanced Cluster Security for Kubernetes 4.8 | RedHat | advanced-cluster-security/rhacs-main-rhel8:1775594119 | * |
| Red Hat Advanced Cluster Security for Kubernetes 4.9 | RedHat | advanced-cluster-security/rhacs-main-rhel8:1775594284 | * |
| Red Hat Openshift Data Foundation 4.18 | RedHat | odf4/cephcsi-rhel9:1781555717 | * |
| Red Hat Openshift Data Foundation 4.18 | RedHat | odf4/cephcsi-rhel9-operator:1781554936 | * |
| Red Hat Openshift Data Foundation 4.18 | RedHat | odf4/mcg-core-rhel9:1781555645 | * |
| Red Hat Openshift Data Foundation 4.18 | RedHat | odf4/mcg-rhel9-operator:1781556009 | * |
| Red Hat Openshift Data Foundation 4.18 | RedHat | odf4/ocs-client-console-rhel9:1781558423 | * |
| Red Hat Openshift Data Foundation 4.18 | RedHat | odf4/ocs-client-rhel9-operator:1781555708 | * |
| Red Hat Openshift Data Foundation 4.18 | RedHat | odf4/ocs-metrics-exporter-rhel9:1781557202 | * |
| Red Hat Openshift Data Foundation 4.18 | RedHat | odf4/ocs-rhel9-operator:1781555679 | * |
| Red Hat Openshift Data Foundation 4.18 | RedHat | odf4/odf-cli-rhel9:1781557189 | * |
| Red Hat Openshift Data Foundation 4.18 | RedHat | odf4/odf-console-rhel9:1781556534 | * |
| Red Hat Openshift Data Foundation 4.18 | RedHat | odf4/odf-cosi-sidecar-rhel9:1781556085 | * |
| Red Hat Openshift Data Foundation 4.18 | RedHat | odf4/odf-csi-addons-rhel9-operator:1781555971 | * |
| Red Hat Openshift Data Foundation 4.18 | RedHat | odf4/odf-csi-addons-sidecar-rhel9:1781557158 | * |
| Red Hat Openshift Data Foundation 4.18 | RedHat | odf4/odf-multicluster-console-rhel9:1781556690 | * |
| Red Hat Openshift Data Foundation 4.18 | RedHat | odf4/odf-multicluster-rhel9-operator:1781558326 | * |
| Red Hat Openshift Data Foundation 4.18 | RedHat | odf4/odf-must-gather-rhel9:1781556544 | * |
| Red Hat Openshift Data Foundation 4.18 | RedHat | odf4/odf-rhel9-operator:1781556958 | * |
| Red Hat Openshift Data Foundation 4.18 | RedHat | odf4/odr-rhel9-operator:1781556901 | * |
| Red Hat Openshift Data Foundation 4.18 | RedHat | odf4/rook-ceph-rhel9-operator:1781557496 | * |
Input validation is a frequently-used technique for checking potentially dangerous inputs in order to ensure that the inputs are safe for processing within the code, or when communicating with other components. Input can consist of:
Data can be simple or structured. Structured data can be composed of many nested layers, composed of combinations of metadata and raw data, with other simple or structured data. Many properties of raw data or metadata may need to be validated upon entry into the code, such as:
Implied or derived properties of data must often be calculated or inferred by the code itself. Errors in deriving properties may be considered a contributing factor to improper input validation.