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 applicationsAllowing public access to CloudTrail log data may aid an adversary in identifying weaknesses in the affected account's use or configuration.
Ensure the aws_s3_bucket
acl
field is not set to "public-read"
or "public-read-write"
.
resource "aws_s3_bucket" "private1" {
acl = "private"
# other required fields here
}
Ensure the AWS::S3::Bucket
AccessControl
field is not set to "PublicRead"
or "PublicReadWrite"
.
Type: "AWS::S3::Bucket"
Properties:
BucketName: cfn172bucket2
AccessControl: LogDeliveryWrite
# other required fields here