containerd is an open-source container runtime. In Versions prior to 2.3.2, 2.2.5 and 2.1.9, the CRI implementation improperly trusts Container Device Interface (CDI) annotations found within untrusted checkpoint image metadata during container restoration. When restoring a container from a checkpoint, containerd preserves CDI-related annotations from the checkpoint archive rather than relying solely on the pods create-time specification. This allows a user with pod creation permissions to bypass standard Kubernetes resource allocation and device plugin enforcement, injecting arbitrary CDI edits (such as device nodes and host mounts) into the restored container. Successful exploitation requires that the node has CDI enabled and contains a matching host CDI specification for the requested device; environments where CDI is disabled or lacking sensitive device specifications are not affected. This issue has been fixed in versions 2.3.2, 2.2.5 and 2.1.9.
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 |
|---|---|---|---|
| Containerd | Linuxfoundation | 2.1.0 (including) | 2.1.9 (excluding) |
| Containerd | Linuxfoundation | 2.2.0 (including) | 2.2.5 (excluding) |
| Containerd | Linuxfoundation | 2.3.0 (including) | 2.3.2 (excluding) |
| Multicluster Global Hub 1.5.4 | RedHat | multicluster-globalhub/multicluster-globalhub-agent-rhel9:1784127491 | * |
| Multicluster Global Hub 1.5.4 | RedHat | multicluster-globalhub/multicluster-globalhub-grafana-rhel9:1784562060 | * |
| Multicluster Global Hub 1.5.4 | RedHat | multicluster-globalhub/multicluster-globalhub-manager-rhel9:1784128029 | * |
| Multicluster Global Hub 1.5.4 | RedHat | multicluster-globalhub/multicluster-globalhub-rhel9-operator:1784127524 | * |
| Multicluster Global Hub 1.7.0 | RedHat | multicluster-globalhub/multicluster-globalhub-agent-rhel9:1784768332 | * |
| Multicluster Global Hub 1.7.0 | RedHat | multicluster-globalhub/multicluster-globalhub-grafana-rhel9:1784906628 | * |
| Multicluster Global Hub 1.7.0 | RedHat | multicluster-globalhub/multicluster-globalhub-manager-rhel9:1784768150 | * |
| Multicluster Global Hub 1.7.0 | RedHat | multicluster-globalhub/multicluster-globalhub-rhel9-operator:1784307548 | * |
| Red Hat Advanced Cluster Management for Kubernetes 2.13 | RedHat | rhacm2/submariner-rhel9-operator:1782933193 | * |
| Red Hat Advanced Cluster Security 4.9 | RedHat | advanced-cluster-security/rhacs-rhel8-operator:1785413210 | * |
| Red Hat Advanced Cluster Security 4.9 | RedHat | advanced-cluster-security/rhacs-scanner-v4-rhel8:1785413210 | * |
| Red Hat Advanced Cluster Security for Kubernetes 4.10 | RedHat | advanced-cluster-security/rhacs-rhel8-operator:1785420959 | * |
| Red Hat Hardened Images | RedHat | trivy-main-0.69.3-1.2.hum1 | * |
| Red Hat Hardened Images | RedHat | grype-main-0.115.0-0.1.hum1 | * |
| Red Hat Hardened Images | RedHat | syft-main-1.46.0-0.1.hum1 | * |
| Red Hat multicluster global hub 1.4.2 | RedHat | multicluster-globalhub/multicluster-globalhub-agent-rhel9:1784061472 | * |
| Red Hat multicluster global hub 1.4.2 | RedHat | multicluster-globalhub/multicluster-globalhub-grafana-rhel9:1784060681 | * |
| Red Hat multicluster global hub 1.4.2 | RedHat | multicluster-globalhub/multicluster-globalhub-manager-rhel9:1784061010 | * |
| Red Hat multicluster global hub 1.4.2 | RedHat | multicluster-globalhub/multicluster-globalhub-rhel9-operator:1784060515 | * |
| Red Hat multicluster global hub 1.6.0 | RedHat | multicluster-globalhub/multicluster-globalhub-agent-rhel9:1784152046 | * |
| Red Hat multicluster global hub 1.6.0 | RedHat | multicluster-globalhub/multicluster-globalhub-grafana-rhel9:1784561376 | * |
| Red Hat multicluster global hub 1.6.0 | RedHat | multicluster-globalhub/multicluster-globalhub-manager-rhel9:1784151884 | * |
| Red Hat multicluster global hub 1.6.0 | RedHat | multicluster-globalhub/multicluster-globalhub-rhel9-operator:1784151772 | * |
| Containerd-app | Ubuntu | esm-apps/jammy | * |
| Containerd-app | Ubuntu | jammy | * |
| Containerd-app | Ubuntu | noble | * |
| Containerd-app | Ubuntu | questing | * |
| Containerd-app | Ubuntu | resolute | * |
| Containerd-app | Ubuntu | upstream | * |
| Containerd-stable | Ubuntu | questing | * |
| Containerd-stable | Ubuntu | resolute | * |
| Containerd-stable | Ubuntu | upstream | * |
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.