57 lines
1.8 KiB
YAML
57 lines
1.8 KiB
YAML
id: cloudtrail-disabled
|
|
info:
|
|
name: CloudTrail Disabled
|
|
author: princechaddha
|
|
severity: high
|
|
description: |
|
|
Ensures AWS CloudTrail is enabled in all regions to monitor and record account activity across your AWS infrastructure, enhancing security and compliance.
|
|
impact: |
|
|
Lack of region-wide CloudTrail logging can lead to insufficient visibility into account activities, hindering anomaly detection and forensic analysis.
|
|
remediation: |
|
|
Enable CloudTrail in all AWS regions through the AWS Management Console or CLI to ensure comprehensive activity logging and monitoring.
|
|
reference:
|
|
- https://docs.aws.amazon.com/awscloudtrail/latest/userguide/cloudtrail-getting-started.html
|
|
metadata:
|
|
max-request: 2
|
|
tags: cloud,devops,aws,amazon,cloudtrail,aws-cloud-config
|
|
variables:
|
|
region: "ap-south-1"
|
|
|
|
flow: |
|
|
code(1)
|
|
for(let CloudTrail of iterate(template.cloudtrailname)){
|
|
set("trail", CloudTrail)
|
|
code(2)
|
|
}
|
|
|
|
self-contained: true
|
|
code:
|
|
- engine:
|
|
- sh
|
|
- bash
|
|
source: |
|
|
aws cloudtrail list-trails --region $region --query 'Trails[*].Name' --output json
|
|
|
|
extractors:
|
|
- type: json
|
|
name: cloudtrailname
|
|
internal: true
|
|
json:
|
|
- '.[]'
|
|
|
|
- engine:
|
|
- sh
|
|
- bash
|
|
source: |
|
|
aws cloudtrail describe-trails --region $region --trail-name-list $trail --query 'trailList[*].IsMultiRegionTrail'
|
|
|
|
matchers:
|
|
- type: word
|
|
words:
|
|
- "false"
|
|
|
|
extractors:
|
|
- type: dsl
|
|
dsl:
|
|
- '"CloudTrail trail" + trail + " is not configured to receive log files from all the AWS cloud regions"'
|
|
# digest: 4a0a00473045022100a7330af1aa9ad989dc95304b0e71f8479849de9782179443c3b7caf9d9373add022034c783da46b9b3b530bbb04d08b70e1803c5d298104e3d65659addd1a8c839d9:922c64590222798bb761d5b6d8e72950 |