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 applicationsBecause inbound traffic is allowed to a resource from any source instead of a restricted range, potentially everyone can access your resource.
Set ingress.cidr_blocks
attribute with a more restrictive CIDR block, for example 192.16.0.0/24
.
Example configuration:
resource "aws_security_group" "ingress-single-cidr-80-80" {
name = "ingress-single-cidr-80-80"
vpc_id = aws_vpc.main.id
ingress {
from_port = 80
to_port = 80
protocol = "tcp"
cidr_blocks = ["192.16.0.0/24"]
}
}
Set Properties.SecurityGroupIngress.CidrIp
attribute with a more restrictive CIDR block, for example 192.16.0.0/24
.