AWS RDS Snapshot Export

Identifies the export of an Amazon Relational Database Service (RDS) Aurora database snapshot.

Elastic rule (View on GitHub)

 1[metadata]
 2creation_date = "2021/06/06"
 3integration = ["aws"]
 4maturity = "production"
 5updated_date = "2024/05/21"
 6
 7[rule]
 8author = ["Elastic", "Austin Songer"]
 9description = "Identifies the export of an Amazon Relational Database Service (RDS) Aurora database snapshot."
10false_positives = [
11    """
12    Exporting snapshots may be done by a system or network administrator. Verify whether the user identity, user agent,
13    and/or hostname should be making changes in your environment. Snapshot exports from unfamiliar users or hosts should
14    be investigated. If known behavior is causing false positives, it can be exempted from the rule.
15    """,
16]
17from = "now-60m"
18index = ["filebeat-*", "logs-aws.cloudtrail-*"]
19interval = "10m"
20language = "kuery"
21license = "Elastic License v2"
22name = "AWS RDS Snapshot Export"
23note = """## Setup
24
25The AWS Fleet integration, Filebeat module, or similarly structured data is required to be compatible with this rule."""
26references = ["https://docs.aws.amazon.com/AmazonRDS/latest/APIReference/API_StartExportTask.html"]
27risk_score = 21
28rule_id = "119c8877-8613-416d-a98a-96b6664ee73a"
29severity = "low"
30tags = [
31    "Domain: Cloud",
32    "Data Source: AWS",
33    "Data Source: Amazon Web Services",
34    "Use Case: Asset Visibility",
35    "Tactic: Exfiltration",
36]
37timestamp_override = "event.ingested"
38type = "query"
39
40query = '''
41event.dataset:aws.cloudtrail and event.provider:rds.amazonaws.com and event.action:StartExportTask and event.outcome:success
42'''
43
44
45[[rule.threat]]
46framework = "MITRE ATT&CK"
47
48[rule.threat.tactic]
49id = "TA0010"
50name = "Exfiltration"
51reference = "https://attack.mitre.org/tactics/TA0010/"

Setup

The AWS Fleet integration, Filebeat module, or similarly structured data is required to be compatible with this rule.

References

Related rules

to-top