fast-uri is a URI parser for Node.js. Its custom parser for bracketed IPv6 literals does not validate the complete IPv6 grammar, so invalid trailing text in an authority can be silently discarded and a malformed attacker-controlled host is turned into a different valid IPv6 destination. For example, a bracketed literal with invalid trailing characters is normalized to the unspecified address, which a Node HTTP client then connects to a local service over loopback, and other malformed literals collapse to private-range addresses. No error is set on the parsed result, so an application checking the error field cannot detect the rewrite. An application that normalizes untrusted URLs before outbound requests, redirects, proxy routing, or address-policy enforcement can be redirected to a local or private IPv6 target, giving a server-side request forgery and address-policy bypass primitive. The affected versions are 2.3.1 up to but not including 2.4.5, 3.0.0 up to but not including 3.1.6, and 4.0.0 up to but not including 4.1.3. The issue is fixed in 2.4.5, 3.1.6, and 4.1.3, which validate bracketed IP literals against the full grammar and mark malformed literals as authority errors. Users should upgrade to a patched version.
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-uri | Openjsf | 2.3.1 (including) | 2.4.5 (excluding) |
| Fast-uri | Openjsf | 3.0.0 (including) | 3.1.6 (excluding) |
| Fast-uri | Openjsf | 4.0.0 (including) | 4.1.3 (excluding) |
| Network Observability (NETOBSERV) 1.12.3 | RedHat | network-observability/network-observability-console-plugin-pf5-rhel9:1789978780 | * |
| Network Observability (NETOBSERV) 1.12.3 | RedHat | network-observability/network-observability-console-plugin-rhel9:1789978277 | * |
| Red Hat Advanced Cluster Management for Kubernetes 2.16 | RedHat | rhacm2/console-rhel9:1788880980 | * |
| Red Hat Advanced Cluster Management for Kubernetes 2.17 | RedHat | rhacm2/console-rhel9:1788883472 | * |
| Red Hat Ansible Automation Platform 2.1 | RedHat | ansible-automation-platform/automation-portal:1788775748 | * |
| Red Hat Ansible Automation Platform 2.2 | RedHat | ansible-automation-platform/automation-portal:1788783591 | * |
| Red Hat Ansible Automation Platform 2.7 | RedHat | ansible-automation-platform-27/mcp-server-rhel9:1788915736 | * |
| Red Hat Developer Hub 1.9 | RedHat | rhdh/rhdh-hub-rhel9:1789554285 | * |
| Red Hat Discovery 2 | RedHat | discovery/discovery-ui-rhel9:1788206196 | * |
| Red Hat Edge Manager 1.1 | RedHat | rhem/flightctl-ui-ocp-rhel10:1789486226 | * |
| Red Hat Edge Manager 1.1 | RedHat | rhem/flightctl-ui-rhel10:1789486181 | * |
| Red Hat Edge Manager 1.1 | RedHat | rhem/flightctl-ui-ocp-rhel9:1789486446 | * |
| Red Hat Edge Manager 1.2 | RedHat | rhem/flightctl-ui-ocp-rhel10:1789485920 | * |
| Red Hat Edge Manager 1.2 | RedHat | rhem/flightctl-ui-rhel10:1789488111 | * |
| Red Hat Edge Manager 1.2 | RedHat | rhem/flightctl-ui-ocp-rhel9:1789486476 | * |
| Red Hat Edge Manager 1.2 | RedHat | rhem/flightctl-ui-rhel9:1789486750 | * |
| Red Hat Hardened Images | RedHat | grafana13-1-main-13.1.3-0.3.hum1 | * |
| Red Hat Hardened Images | RedHat | grafana13-2-main-13.2.0-0.1.2.hum1 | * |
| Red Hat Hardened Images | RedHat | grafana12-4-main-12.4.9-0.4.hum1 | * |
| Red Hat Migration Toolkit 1.8 | RedHat | rhmtc/openshift-migration-ui-rhel8:1789546373 | * |
| Red Hat OpenShift Container Platform 4.21 | RedHat | openshift4/nmstate-console-plugin-rhel9:1789592806 | * |
| Red Hat OpenShift Container Platform 4.22 | RedHat | openshift4/nmstate-console-plugin-rhel9:1789567849 | * |
| Red Hat OpenShift Dev Spaces 3.30 | RedHat | devspaces/dashboard-rhel9:1789162884 | * |
| Red Hat Satellite 6.18 | RedHat | satellite/iop-host-inventory-frontend-rhel9:1789613107 | * |
| Red Hat Satellite 6.18 | RedHat | satellite/iop-advisor-frontend-rhel9:1789659573 | * |
| Red Hat Satellite 6.18 | RedHat | satellite/iop-vulnerability-frontend-rhel9:1789660969 | * |
| Red Hat Satellite 6.18 | RedHat | satellite/iop-remediations-rhel9:1789615095 | * |
| Red Hat Satellite 6.19 | RedHat | satellite/iop-remediations-rhel9:1789615593 | * |
| Red Hat Satellite 6.19 | RedHat | satellite/iop-advisor-frontend-rhel9:1789659565 | * |
| Red Hat Satellite 6.19 | RedHat | satellite/iop-host-inventory-frontend-rhel9:1789624519 | * |
| Red Hat Satellite 6.19 | RedHat | satellite/iop-vulnerability-frontend-rhel9:1789660983 | * |
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.