CCSS (Common Configuration Scoring System) is a set of measures used to determine the severity of the rule.
Each rule is associated with a high-level category. For example IAM, Container, Monitoring, Logging, Network, etc.
In a few clicks we can analyze your entire application and see what components are vulnerable in your application, and suggest you quick fixes.
Test your applicationsAvoid auto mounting tokens for the default service account. The default service account should not be used and its ability to provide API credentials should be disabled.
Set the automountServiceAccountToken
attribute to false
.
Example configuration:
apiVersion: v1
kind: ServiceAccount
metadata:
name: valid-serviceaccount
automountServiceAccountToken: false
Set the automount_service_account_token
attribute to false
.
Example configuration:
resource "kubernetes_service_account" "allowed" {
metadata {
name = "example-654-allowed"
}
automount_service_account_token = false
}