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 applicationsSELinux mandatory access controls may be bypassed, due to clashes in labeling.
Remove securityContext.seLinuxOptions
.
Remove container.security_context.se_linux_options
.
resource "kubernetes_pod" "allowed" {
metadata {
name = "example-620a1"
}
spec {
security_context {
}
container {
image = "nginx:1.7.9"
name = "example"
}
dns_policy = "None"
}
}