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 applicationsAll containers may be allowed to escalate privileges unless allowPrivilegeEscalation
attribute is set to false
. This stops the container from gaining more privileges than its parent process.
Ensure that the defaultAllowPrivilegeEscalation
field is set to false
.
apiVersion: policy/v1beta1
kind: PodSecurityPolicy
metadata:
name: p
spec:
defaultAllowPrivilegeEscalation: false
# other required fields here