Kubernetes (K8s)
Step 1: Check if the Kubelet API is Exposed
curl -k https://<NODE_IP>:10250/pods
# If you get a JSON response → Kubelet is exposed.
# If you get “unauthorized” or a cert error → may need a token or client cert.Step 2: Install kubeletctl (if not already installed)
go install github.com/cyberark/kubeletctl@latestStep 3: List Running Pods
kubeletctl --server <NODE_IP>:10250 podsStep 4: Try Remote Code Execution (RCE)
Step 5: Extract Service Account Token and CA Cert
Last updated