2024-04-11 14:23:07 +00:00
|
|
|
id: s3-bucket-policy-public-access
|
|
|
|
info:
|
|
|
|
name: Public Access of S3 Buckets via Policy
|
|
|
|
author: princechaddha
|
|
|
|
severity: critical
|
|
|
|
description: |
|
|
|
|
This template checks if Amazon S3 buckets are configured to prevent public access via bucket policies
|
|
|
|
reference:
|
|
|
|
- https://docs.aws.amazon.com/cli/latest/reference/s3api/get-bucket-policy.html
|
|
|
|
tags: cloud,devops,aws,amazon,s3,aws-cloud-config
|
|
|
|
|
|
|
|
flow: |
|
|
|
|
code(1)
|
|
|
|
for(let bucketName of iterate(template.buckets)){
|
|
|
|
set("bucket", bucketName)
|
|
|
|
code(2)
|
|
|
|
}
|
|
|
|
|
|
|
|
self-contained: true
|
|
|
|
code:
|
|
|
|
- engine:
|
|
|
|
- sh
|
|
|
|
- bash
|
|
|
|
source: |
|
|
|
|
aws s3api list-buckets --query 'Buckets[*].Name'
|
|
|
|
|
|
|
|
extractors:
|
|
|
|
- type: json # type of the extractor
|
|
|
|
internal: true
|
|
|
|
name: buckets
|
|
|
|
json:
|
|
|
|
- '.[]'
|
|
|
|
|
|
|
|
- engine:
|
|
|
|
- sh
|
|
|
|
- bash
|
|
|
|
source: |
|
|
|
|
aws s3api get-bucket-policy --bucket $bucket --query Policy --output text
|
|
|
|
|
|
|
|
matchers-condition: and
|
|
|
|
matchers:
|
|
|
|
- type: word
|
|
|
|
part: body
|
|
|
|
words:
|
|
|
|
- '"Effect":"Allow"'
|
|
|
|
|
|
|
|
- type: word
|
|
|
|
part: body
|
|
|
|
words:
|
|
|
|
- '"Principal":"*"'
|
|
|
|
- '"AWS":"*"'
|
|
|
|
|
|
|
|
extractors:
|
|
|
|
- type: dsl
|
|
|
|
dsl:
|
|
|
|
- '"The S3 bucket " + bucket +" is publicly accessible via Policy"'
|
2024-04-11 14:25:25 +00:00
|
|
|
# digest: 4b0a004830460221009b48d546c9c75d61879e6371e646807f994d64408c3f84d48c9a9b344b9743410221009ed66db2acf2d13fb22b03344e70b7679191e4d76de5615fb69753c02d49306d:922c64590222798bb761d5b6d8e72950
|