Ensure CloudTrail logs are encrypted at rest using KMS CMKs
Description
AWS CloudTrail is a web service that records AWS API calls for an account and makes those logs available to users and resources in accordance with IAM policies. AWS Key Management Service (KMS) is a managed service that helps create and control the encryption keys used to encrypt account data, and uses Hardware Security Modules (HSMs) to protect the security of encryption keys. CloudTrail logs can be configured to leverage server side encryption (SSE) and KMS customer-created master keys (CMK) to further protect CloudTrail logs. It is recommended that CloudTrail be configured to use SSE-KMS.
Rationale
Configuring CloudTrail to use SSE-KMS provides additional confidentiality controls on log data, as a given user must have S3 read permission on the corresponding log bucket and must be granted decrypt permission by the CMK policy.
Impact
Customer-created keys incur an additional cost. See https://aws.amazon.com/kms/pricing/ for more information.
Audit Procedure
Using AWS Console
- Sign in to the AWS Management Console and open the CloudTrail console at https://console.aws.amazon.com/cloudtrail.
- In the left navigation pane, choose
Trails. - Select a trail.
- In the
General detailssection, selectEditto edit the trail configuration. - Ensure the box at
Log file SSE-KMS encryptionis checked and that a validAWS KMS aliasof a KMS key is entered in the respective text box.
Using AWS CLI
- Run the following command:
aws cloudtrail describe-trails
- For each trail listed, SSE-KMS is enabled if the trail has a
KmsKeyIdproperty defined.
Expected Result
All CloudTrail trails have a KmsKeyId property defined, indicating SSE-KMS encryption is enabled.
Remediation
Using AWS Console
- Sign in to the AWS Management Console and open the CloudTrail console at https://console.aws.amazon.com/cloudtrail.
- In the left navigation pane, choose
Trails. - Click on a trail.
- Under the
S3section, click the edit button (pencil icon). - Click
Advanced. - Select an existing CMK from the
KMS key Iddrop-down menu.- Note: Ensure the CMK is located in the same region as the S3 bucket.
- Note: You will need to apply a KMS key policy on the selected CMK in order for CloudTrail, as a service, to encrypt and decrypt log files using the CMK provided. View the AWS documentation for editing the selected CMK Key policy.
- Click
Save. - You will see a notification message stating that you need to have decryption permissions on the specified KMS key to decrypt log files.
- Click
Yes.
Using AWS CLI
Run the following command to specify a KMS key ID to use with a trail:
aws cloudtrail update-trail --name <trail-name> --kms-key-id <cloudtrail-kms-key>
Run the following command to attach a key policy to a specified KMS key:
aws kms put-key-policy --key-id <cloudtrail-kms-key> --policy <cloudtrail-kms-key-policy>
Additional Information
Three statements that need to be added to the CMK policy:
- Enable CloudTrail to describe CMK properties:
{
"Sid": "Allow CloudTrail access",
"Effect": "Allow",
"Principal": {
"Service": "cloudtrail.amazonaws.com"
},
"Action": "kms:DescribeKey",
"Resource": "*"
}
- Granting encrypt permissions:
{
"Sid": "Allow CloudTrail to encrypt logs",
"Effect": "Allow",
"Principal": {
"Service": "cloudtrail.amazonaws.com"
},
"Action": "kms:GenerateDataKey*",
"Resource": "*",
"Condition": {
"StringLike": {
"kms:EncryptionContext:aws:cloudtrail:arn": ["arn:aws:cloudtrail:*:aws-account-id:trail/*"]
}
}
}
- Granting decrypt permissions:
{
"Sid": "Enable CloudTrail log decrypt permissions",
"Effect": "Allow",
"Principal": {
"AWS": "arn:aws:iam::aws-account-id:user/username"
},
"Action": "kms:Decrypt",
"Resource": "*",
"Condition": {
"Null": {
"kms:EncryptionContext:aws:cloudtrail:arn": "false"
}
}
}
Default Value
By default, CloudTrail logs are not encrypted with a KMS CMK. Logs may be encrypted with SSE-S3, but this does not provide the same level of control or auditing as KMS CMKs.
References
- https://docs.aws.amazon.com/awscloudtrail/latest/userguide/encrypting-cloudtrail-log-files-with-aws-kms.html
- https://docs.aws.amazon.com/kms/latest/developerguide/create-keys.html
- CCE-78919-8
- https://awscli.amazonaws.com/v2/documentation/api/latest/reference/cloudtrail/update-trail.html
- https://awscli.amazonaws.com/v2/documentation/api/latest/reference/kms/put-key-policy.html
CIS Controls
| Controls Version | Control | IG 1 | IG 2 | IG 3 |
|---|---|---|---|---|
| v8 | 3.11 Encrypt Sensitive Data at Rest - Encrypt sensitive data at rest on servers, applications, and databases containing sensitive data. | x | x | |
| v8 | 8.1 Establish and Maintain an Audit Log Management Process - Establish and maintain an audit log management process that defines the enterprise's logging requirements. | x | x | x |
| v7 | 14.8 Encrypt Sensitive Information at Rest - Encrypt all sensitive information at rest using a tool that requires a secondary authentication mechanism not integrated into the operating system. | x |
MITRE ATT&CK Mappings
| Techniques / Sub-techniques | Tactics | Mitigations |
|---|---|---|
| T1530 | TA0009 | M1041 |
Profile
Level 2 | Automated