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 applicationsInstances should send and receive traffic with their own IP address only. Disabling this check allows the instance to spoof other devices on the local network or intercept traffic. Ignore this issue if you are deploying a NAT instance which requires this setting to be disabled.
Set the instance source_dest_check
attribute to true
.
resource "aws_instance" "allowed" {
ami = "ami-005e54dee72ccabcd"
instance_type = "t2.micro"
source_dest_check = true
}
Set Properties.SourceDestCheck
attribute to true
.
Resources:
Allowed:
Type: AWS::EC2::Instance
Properties:
ImageId: id-test
SourceDestCheck: true