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 applicationsElastic Load Balancing security groups should permit access only to necessary ports to prevent access to potentially vulnerable services on other ports.
Ensure that the aws_security_group
associated with a load balancer does not have an ingress
block that allows access to all TCP ports.
Invalid configurations:
ingress.from_port
set to 0
and ingress.to_port
set to 65535
ingress.protocol
set to -1
resource "aws_security_group" "elb-all-valid-elb-group" {
name = "elb-all-valid-elb-group"
description = "ELB All TCP Test"
ingress {
from_port = 80
to_port = 80
protocol = "tcp"
cidr_blocks = ["192.169.1.1/32"]
}
}