2020-06-29 22:57:00 -06:00
|
|
|
[metadata]
|
|
|
|
|
creation_date = "2020/06/05"
|
2023-01-04 09:30:07 -05:00
|
|
|
integration = ["aws"]
|
2020-06-29 22:57:00 -06:00
|
|
|
maturity = "production"
|
2023-10-24 12:51:59 -04:00
|
|
|
min_stack_comments = "AWS integration breaking changes, bumping version to ^2.0.0"
|
|
|
|
|
min_stack_version = "8.9.0"
|
|
|
|
|
updated_date = "2023/10/24"
|
2020-06-29 22:57:00 -06:00
|
|
|
|
|
|
|
|
[rule]
|
|
|
|
|
author = ["Elastic"]
|
|
|
|
|
description = """
|
|
|
|
|
Identifies disabling of Amazon Elastic Block Store (EBS) encryption by default in the current region. Disabling
|
|
|
|
|
encryption by default does not change the encryption status of your existing volumes.
|
|
|
|
|
"""
|
|
|
|
|
false_positives = [
|
|
|
|
|
"""
|
|
|
|
|
Disabling encryption may be done by a system or network administrator. Verify whether the user identity, user agent,
|
|
|
|
|
and/or hostname should be making changes in your environment. Disabling encryption by unfamiliar users or hosts
|
|
|
|
|
should be investigated. If known behavior is causing false positives, it can be exempted from the rule.
|
|
|
|
|
""",
|
|
|
|
|
]
|
2020-07-08 05:56:17 -07:00
|
|
|
from = "now-60m"
|
2020-09-21 09:04:50 -04:00
|
|
|
index = ["filebeat-*", "logs-aws*"]
|
2020-06-29 22:57:00 -06:00
|
|
|
interval = "10m"
|
|
|
|
|
language = "kuery"
|
2021-03-03 22:12:11 -09:00
|
|
|
license = "Elastic License v2"
|
2020-06-29 22:57:00 -06:00
|
|
|
name = "AWS EC2 Encryption Disabled"
|
2022-07-18 15:41:32 -04:00
|
|
|
note = """## Setup
|
2021-05-10 13:40:56 -08:00
|
|
|
|
|
|
|
|
The AWS Fleet integration, Filebeat module, or similarly structured data is required to be compatible with this rule."""
|
2020-06-29 22:57:00 -06:00
|
|
|
references = [
|
|
|
|
|
"https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/EBSEncryption.html",
|
|
|
|
|
"https://awscli.amazonaws.com/v2/documentation/api/latest/reference/ec2/disable-ebs-encryption-by-default.html",
|
|
|
|
|
"https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_DisableEbsEncryptionByDefault.html",
|
|
|
|
|
]
|
|
|
|
|
risk_score = 47
|
|
|
|
|
rule_id = "bb9b13b2-1700-48a8-a750-b43b0a72ab69"
|
|
|
|
|
severity = "medium"
|
2023-06-22 18:38:56 -03:00
|
|
|
tags = ["Domain: Cloud", "Data Source: AWS", "Data Source: Amazon Web Services", "Tactic: Impact"]
|
2021-02-16 10:52:48 -09:00
|
|
|
timestamp_override = "event.ingested"
|
2020-06-29 22:57:00 -06:00
|
|
|
type = "query"
|
|
|
|
|
|
|
|
|
|
query = '''
|
2021-04-14 10:49:28 -04:00
|
|
|
event.dataset:aws.cloudtrail and event.provider:ec2.amazonaws.com and event.action:DisableEbsEncryptionByDefault and event.outcome:success
|
2020-06-29 22:57:00 -06:00
|
|
|
'''
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
[[rule.threat]]
|
|
|
|
|
framework = "MITRE ATT&CK"
|
|
|
|
|
[[rule.threat.technique]]
|
2020-12-18 12:46:16 -09:00
|
|
|
id = "T1565"
|
|
|
|
|
name = "Data Manipulation"
|
|
|
|
|
reference = "https://attack.mitre.org/techniques/T1565/"
|
|
|
|
|
[[rule.threat.technique.subtechnique]]
|
|
|
|
|
id = "T1565.001"
|
2020-06-29 22:57:00 -06:00
|
|
|
name = "Stored Data Manipulation"
|
2020-12-18 12:46:16 -09:00
|
|
|
reference = "https://attack.mitre.org/techniques/T1565/001/"
|
2020-06-29 22:57:00 -06:00
|
|
|
|
|
|
|
|
|
2021-02-16 10:52:48 -09:00
|
|
|
|
2020-06-29 22:57:00 -06:00
|
|
|
[rule.threat.tactic]
|
|
|
|
|
id = "TA0040"
|
|
|
|
|
name = "Impact"
|
|
|
|
|
reference = "https://attack.mitre.org/tactics/TA0040/"
|
|
|
|
|
|