The Kubernetes PKI keys must have file permissions set to 600 or more restrictive.
Severity | Group ID | Group Title | Version | Rule ID | Date | STIG Version |
---|---|---|---|---|---|---|
medium | V-242467 | SRG-APP-000516-CTR-001335 | CNTR-K8-003340 | SV-242467r961863_rule | 2025-02-20 | 2 |
Description |
---|
The Kubernetes PKI directory contains all certificate key files supporting secure network communications in the Kubernetes Control Plane. If these files can be modified, data traversing within the architecture components would become unsecure and compromised. |
ℹ️ Check |
---|
Review the permissions of the Kubernetes PKI key files by using the command: sudo find /etc/kubernetes/pki -name "*.key" | xargs stat -c '%n %a' If any of the files have permissions more permissive than "600", this is a finding. |
✔️ Fix |
---|
Change the ownership of the key files to "600" by executing the command: find /etc/kubernetes/pki -name "*.key" | xargs chmod 600 |