
CVE-2020-8554: Man in the middle using LoadBalancer or ExternalIPs
created to address CVE-2020-8554
Note: This chart is deprecated for kubernetes version 1.21 and unsupported starting with 1.22. To mitigate CVE-2020-8554, enable the DenyServiceExternalIPs admission controller on the cluster.
externalip-webhook, is a validating webhook which prevents services from using random external IPs. Cluster administrators
can specify list of CIDRs allowed to be used as external IP by specifying allowed-external-ip-cidrs parameter.
Webhook will only allow creation of services which doesn't require external IP or whose external IPs are within the range
specified by the administrator.
This repo is built using kubebuilder.
To restrict external IP to certain CIDRs, uncomment and update allowed-external-ip-cidrs in webhook.yaml.
NOTE: If auth-proxy is enabled then update allowed-external-ip-cidrs in metrics_server_auth_proxy.yaml.
To deploy the webhook using the manifests in this repo, you must have kustomize in your path.
You can download kustomize here: https://kubernetes-sigs.github.io/kustomize/installation/
make deploy
make docker-build IMG=DOCKER_IMAGE_TAG
make deploy IMG=DOCKER_IMAGE_TAG
A rancher-externalip-webhook helm chart has been created to facilitate deployment.
To restrict external IP to certain CIDRs, set allowedExternalIPCidrs value at helm command
To build webhook docker image and generate a new chart version
make rancher-ci
To just generate a new chart version
make rancher-chart-ci
Helm char revision would be generated under build/chart folder. Helm chart archive build/chart/latest/rancher-externalip-webhook-<VERSION>.tgz and helm chart folder build/chart/rancher-externalip-webhook
Deploying the chart
helm -n externalip-webhook template rancher-externalip-webhook build/chart/latest/rancher-externalip-webhook-<VERSION>.tgz --output-dir . --set metrics.enabled=true --set metrics.prometheusExport=true
kubectl apply -R -f ./rancher-externalip-webhook
Webhook by default runs under externalip-validation-system ns. This can be changed by updating namespace and
namePrefix in kustomization.yaml file.
Webhook certificates can either be generated through cert-manager or by uploading certs. Following section explains how this can be achieved.
Uncomment all sections with 'CERTMANAGER' in kustomization.yaml file.
webhook-server-cert in namespace
same as kustomization.yaml.caBundle field in manifests.yaml.Webhook emits webhook_failed_request_count metrics whenever it rejects service creation or update operation.
Uncomment --metrics-addr and the corresponding section in containers.Port in webhook.yaml.
Follow the steps mentioned here to export the webhook metrics.
Learn how to engage with the Kubernetes community on the community page.
You can reach the maintainers of this project at:
Participation in the Kubernetes community is governed by the Kubernetes Code of Conduct.