Improper input validation in the Kubernetes API server in versions v1.0-1.12 and versions prior to v1.13.12, v1.14.8, v1.15.5, and v1.16.2 allows authorized users to send malicious YAML or JSON payloads, causing the API server to consume excessive CPU or memory, potentially crashing and becoming unavailable. Prior to v1.14.0, default RBAC policy authorized anonymous users to submit requests that could trigger this vulnerability. Clusters upgraded from a version prior to v1.14.0 keep the more permissive policy by default for backwards compatibility.
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 |
---|---|---|---|
Kubernetes | Kubernetes | 1.1.0 (including) | 1.12.10 (including) |
Kubernetes | Kubernetes | 1.13.0 (including) | 1.13.2 (excluding) |
Kubernetes | Kubernetes | 1.14.0 (including) | 1.14.8 (excluding) |
Kubernetes | Kubernetes | 1.15.0 (including) | 1.15.5 (excluding) |
Kubernetes | Kubernetes | 1.16.0 (including) | 1.16.2 (excluding) |
Openshift Service Mesh 1.0 | RedHat | jaeger-0:v1.13.1.redhat5-1.el7 | * |
Openshift Service Mesh 1.0 | RedHat | jaeger-operator-0:v1.13.1.redhat8-1.el7 | * |
Openshift Service Mesh 1.0 | RedHat | kiali-0:v1.0.7.redhat1-1.el7 | * |
OpenShift Service Mesh 1.0 | RedHat | servicemesh-0:1.0.2-3.el8 | * |
OpenShift Service Mesh 1.0 | RedHat | servicemesh-cni-0:1.0.2-3.el8 | * |
OpenShift Service Mesh 1.0 | RedHat | servicemesh-grafana-0:6.2.2-24.el8 | * |
OpenShift Service Mesh 1.0 | RedHat | servicemesh-operator-0:1.0.2-7.el8 | * |
OpenShift Service Mesh 1.0 | RedHat | servicemesh-prometheus-0:2.7.2-25.el8 | * |
OpenShift Service Mesh 1.0 | RedHat | servicemesh-proxy-0:1.0.2-3.el8 | * |
OpenShift Service Mesh 1.0 | RedHat | servicemesh-grafana-0:6.2.2-38.el8 | * |
OpenShift Service Mesh 1.0 | RedHat | servicemesh-prometheus-0:2.7.2-36.el8 | * |
OpenShift Service Mesh 1.0 | RedHat | servicemesh-cni-0:1.0.11-1.el8 | * |
OpenShift Service Mesh 1.1 | RedHat | servicemesh-operator-0:1.1.4-3.el8 | * |
OpenShift Service Mesh 1.1 | RedHat | servicemesh-grafana-0:6.4.3-11.el8 | * |
OpenShift Service Mesh 1.1 | RedHat | servicemesh-cni-0:1.1.4-2.el8 | * |
Red Hat OpenShift Container Platform 3.10 | RedHat | atomic-openshift-0:3.10.181-1.git.0.3ab4b3d.el7 | * |
Red Hat OpenShift Container Platform 3.11 | RedHat | atomic-openshift-0:3.11.154-1.git.0.7a097ad.el7 | * |
Red Hat OpenShift Container Platform 3.9 | RedHat | atomic-openshift-0:3.9.102-1.git.0.6411f52.el7 | * |
Red Hat OpenShift Container Platform 4.1 | RedHat | openshift-0:4.1.20-201910101746.git.0.a80aad5.el8 | * |
Red Hat OpenStack Platform 16.2 | RedHat | rhosp-rhel8-tech-preview/osp-director-operator:1.2.3-2 | * |
Kubernetes | Ubuntu | devel | * |
Kubernetes | Ubuntu | disco | * |
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.