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 applicationsEnforcing IMDSv2 on SageMaker Notebook instances mitigates the risk of unauthorized retrieval of instance metadata, which could lead to credential exposure and privilege escalation. IMDSv1 does not require session-oriented requests, making it more susceptible to SSRF attacks.
Set the instance_metadata_service_configuration.minimum_instance_metadata_service_version
attribute in aws_sagemaker_notebook_instance
resource to 2
.
resource "aws_sagemaker_notebook_instance" "allow1" {
name = "rule-782-ni"
role_arn = aws_iam_role.rule-782-role.arn
instance_type = "ml.t2.medium"
instance_metadata_service_configuration {
minimum_instance_metadata_service_version = 2
}
}