Pentesting Kubernetes Services
Last updated
Last updated
Learn & practice AWS Hacking:HackTricks Training AWS Red Team Expert (ARTE) Learn & practice GCP Hacking: HackTricks Training GCP Red Team Expert (GRTE)
Kubernetes uses several specific network services that you might find exposed to the Internet or in an internal network once you have compromised one pod.
One way could be searching for Identity LIKE "k8s.%.com"
in crt.sh to find subdomains related to kubernetes. Another way might be to search "k8s.%.com"
in github and search for YAML files containing the string.
It might be useful for you to understand how Kubernetes can expose services publicly in order to find them:
Exposing Services in KubernetesThe following ports might be open in a Kubernetes cluster:
Port | Process | Description |
---|---|---|
443/TCP | kube-apiserver | Kubernetes API port |
2379/TCP | etcd | |
6666/TCP | etcd | etcd |
4194/TCP | cAdvisor | Container metrics |
6443/TCP | kube-apiserver | Kubernetes API port |
8443/TCP | kube-apiserver | Minikube API port |
8080/TCP | kube-apiserver | Insecure API port |
10250/TCP | kubelet | HTTPS API which allows full mode access |
10255/TCP | kubelet | Unauthenticated read-only HTTP port: pods, running pods and node state |
10256/TCP | kube-proxy | Kube Proxy health check server |
9099/TCP | calico-felix | Health check server for Calico |
6782-4/TCP | weave | Metrics and endpoints |
30000-32767/TCP | NodePort | Proxy to the services |
44134/TCP | Tiller | Helm service listening |
This is the API Kubernetes service the administrators talks with usually using the tool kubectl
.
Common ports: 6443 and 443, but also 8443 in minikube and 8080 as insecure.
Check the following page to learn how to obtain sensitive data and perform sensitive actions talking to this service:
Kubernetes EnumerationThis service run in every node of the cluster. It's the service that will control the pods inside the node. It talks with the kube-apiserver.
If you find this service exposed you might have found an unauthenticated RCE.
If the response is Unauthorized
then it requires authentication.
If you can list nodes you can get a list of kubelets endpoints with:
You could abuse this service to escalate privileges inside Kubernetes:
Service useful to gather metrics.
When a port is exposed in all the nodes via a NodePort, the same port is opened in all the nodes proxifying the traffic into the declared Service. By default this port will be in in the range 30000-32767. So new unchecked services might be accessible through those ports.
Anonymous access to kube-apiserver API endpoints is not allowed. But you could check some endpoints:
The ETCD stores the cluster secrets, configuration files and more sensitive data. By default, the ETCD cannot be accessed anonymously, but it always good to check.
If the ETCD can be accessed anonymously, you may need to use the etcdctl tool. The following command will get all the keys stored:
The Kubelet documentation explains that by default anonymous access to the service is allowed:
Enables anonymous requests to the Kubelet server. Requests that are not rejected by another authentication method are treated as anonymous requests. Anonymous requests have a username of
system:anonymous
, and a group name ofsystem:unauthenticated
To understand better how the authentication and authorization of the Kubelet API works check this page:
Kubelet Authentication & AuthorizationThe Kubelet service API is not documented, but the source code can be found here and finding the exposed endpoints is as easy as running:
All of them sound interesting.
You can use the Kubeletctl tool to interact with Kubelets and their endpoints.
This endpoint list pods and their containers:
This endpoint allows to execute code inside any container very easily:
To avoid this attack the kubelet service should be run with --anonymous-auth false
and the service should be segregated at the network level.
When a kubelet read-only port is exposed, it becomes possible for information to be retrieved from the API by unauthorized parties. The exposure of this port may lead to the disclosure of various cluster configuration elements. Although the information, including pod names, locations of internal files, and other configurations, may not be critical, its exposure still poses a security risk and should be avoided.
An example of how this vulnerability can be exploited involves a remote attacker accessing a specific URL. By navigating to http://<external-IP>:10255/pods
, the attacker can potentially retrieve sensitive information from the kubelet:
Learn & practice AWS Hacking:HackTricks Training AWS Red Team Expert (ARTE) Learn & practice GCP Hacking: HackTricks Training GCP Red Team Expert (GRTE)