-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathdata.yaml
114 lines (85 loc) · 5.42 KB
/
data.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
metadata:
id: dfc4b9b5-43dc-5ec2-97b4-76a71621fa40
name: Ensure a log metric filter and alarm exist for CloudTrail configuration changes
profile_applicability: '* Level 1'
description: |-
Real-time monitoring of API calls can be achieved by directing CloudTrail Logs to CloudWatch Logs and establishing corresponding metric filters and alarms.
It is recommended that a metric filter and alarm be established for detecting changes to CloudTrail's configurations.
rationale: |-
Monitoring changes to CloudTrail's configuration will help ensure sustained visibility to activities performed in the AWS account.
audit: |-
Perform the following to ensure that there is at least one active multi-region CloudTrail with prescribed metric filters and alarms configured:
1. Identify the log group name configured for use with active multi-region CloudTrail:
- List all CloudTrails: `aws cloudtrail describe-trails`
- Identify Multi region Cloudtrails: `Trails with "IsMultiRegionTrail" set to true`
- From value associated with CloudWatchLogsLogGroupArn note `<cloudtrail_log_group_name>`
Example: for CloudWatchLogsLogGroupArn that looks like `arn:aws:logs:<region>:<aws_account_number>:log-group:NewGroup:*`, `<cloudtrail_log_group_name>` would be `NewGroup`
- Ensure Identified Multi region CloudTrail is active
`aws cloudtrail get-trail-status --name <Name of a Multi-region CloudTrail>`
ensure `IsLogging` is set to `TRUE`
- Ensure identified Multi-region Cloudtrail captures all Management Events
`aws cloudtrail get-event-selectors --trail-name <trailname shown in describe-trails>`
Ensure there is at least one Event Selector for a Trail with `IncludeManagementEvents` set to `true` and `ReadWriteType` set to `All`
2. Get a list of all associated metric filters for this `<cloudtrail_log_group_name>`:
```
aws logs describe-metric-filters --log-group-name "<cloudtrail_log_group_name>"
```
3. Ensure the output from the above command contains the following:
```
"filterPattern": "{ ($.eventName = CreateTrail) || ($.eventName = UpdateTrail) || ($.eventName = DeleteTrail) || ($.eventName = StartLogging) || ($.eventName = StopLogging) }"
```
4. Note the `<cloudtrail_cfg_changes_metric>` value associated with the `filterPattern` found in step 3.
5. Get a list of CloudWatch alarms and filter on the `<cloudtrail_cfg_changes_metric>` captured in step 4.
```
aws cloudwatch describe-alarms --query 'MetricAlarms[?MetricName== `<cloudtrail_cfg_changes_metric>`]'
```
6. Note the `AlarmActions` value - this will provide the SNS topic ARN value.
7. Ensure there is at least one active subscriber to the SNS topic
```
aws sns list-subscriptions-by-topic --topic-arn <sns_topic_arn>
```
at least one subscription should have "SubscriptionArn" with valid aws ARN.
```
Example of valid "SubscriptionArn": "arn:aws:sns:<region>:<aws_account_number>:<SnsTopicName>:<SubscriptionID>"
```
remediation: |-
Perform the following to setup the metric filter, alarm, SNS topic, and subscription:
1. Create a metric filter based on filter pattern provided which checks for cloudtrail configuration changes and the `<cloudtrail_log_group_name>` taken from audit step 1.
```
aws logs put-metric-filter --log-group-name <cloudtrail_log_group_name> --filter-name `<cloudtrail_cfg_changes_metric>` --metric-transformations metricName= `<cloudtrail_cfg_changes_metric>` ,metricNamespace='CISBenchmark',metricValue=1 --filter-pattern '{ ($.eventName = CreateTrail) || ($.eventName = UpdateTrail) || ($.eventName = DeleteTrail) || ($.eventName = StartLogging) || ($.eventName = StopLogging) }'
```
**Note**: You can choose your own metricName and metricNamespace strings.
Using the same metricNamespace for all Foundations Benchmark metrics will group them together.
2. Create an SNS topic that the alarm will notify
```
aws sns create-topic --name <sns_topic_name>
```
**Note**: you can execute this command once and then re-use the same topic for all monitoring alarms.
3. Create an SNS subscription to the topic created in step 2
```
aws sns subscribe --topic-arn <sns_topic_arn> --protocol <protocol_for_sns> --notification-endpoint <sns_subscription_endpoints>
```
**Note**: you can execute this command once and then re-use the SNS subscription for all monitoring alarms.
4. Create an alarm that is associated with the CloudWatch Logs Metric Filter created in step 1 and an SNS topic created in step 2
```
aws cloudwatch put-metric-alarm --alarm-name `<cloudtrail_cfg_changes_alarm>` --metric-name `<cloudtrail_cfg_changes_metric>` --statistic Sum --period 300 --threshold 1 --comparison-operator GreaterThanOrEqualToThreshold --evaluation-periods 1 --namespace 'CISBenchmark' --alarm-actions <sns_topic_arn>
```
impact: ''
default_value: ''
references: |-
1. https://docs.aws.amazon.com/awscloudtrail/latest/userguide/receive-cloudtrail-log-files-from-multiple-regions.html
2. https://docs.aws.amazon.com/awscloudtrail/latest/userguide/cloudwatch-alarms-for-cloudtrail.html
3. https://docs.aws.amazon.com/sns/latest/dg/SubscribeTopic.html
section: Monitoring
version: '1.0'
tags:
- CIS
- AWS
- CIS 4.5
- Monitoring
benchmark:
name: CIS Amazon Web Services Foundations
version: v1.5.0
id: cis_aws
rule_number: '4.5'
posture_type: cspm