e272800a5d
* Add Mitre sub-technique support to CLI * Add subtechnique enum to schema * Add test to prevent duplicative tactics in mapping
56 lines
1.7 KiB
TOML
56 lines
1.7 KiB
TOML
[metadata]
|
|
creation_date = "2020/07/06"
|
|
maturity = "production"
|
|
updated_date = "2020/10/26"
|
|
|
|
[rule]
|
|
author = ["Elastic"]
|
|
description = """
|
|
Identifies the execution of commands and scripts via System Manager. Execution methods such as RunShellScript,
|
|
RunPowerShellScript, and alike can be abused by an authenticated attacker to install a backdoor or to interact with a
|
|
compromised instance via reverse-shell using system only commands.
|
|
"""
|
|
false_positives = [
|
|
"""
|
|
Verify whether the user identity, user agent, and/or hostname should be making changes in your environment.
|
|
Suspicious commands from unfamiliar users or hosts should be investigated. If known behavior is causing false
|
|
positives, it can be exempted from the rule.
|
|
""",
|
|
]
|
|
from = "now-60m"
|
|
index = ["filebeat-*", "logs-aws*"]
|
|
interval = "10m"
|
|
language = "kuery"
|
|
license = "Elastic License"
|
|
name = "AWS Execution via System Manager"
|
|
note = "The AWS Filebeat module must be enabled to use this rule."
|
|
references = ["https://docs.aws.amazon.com/systems-manager/latest/userguide/ssm-plugins.html"]
|
|
risk_score = 21
|
|
rule_id = "37b211e8-4e2f-440f-86d8-06cc8f158cfa"
|
|
severity = "low"
|
|
tags = ["Elastic", "Cloud", "AWS", "Continuous Monitoring", "SecOps", "Log Auditing"]
|
|
type = "query"
|
|
|
|
query = '''
|
|
event.dataset:aws.cloudtrail and event.provider:ssm.amazonaws.com and event.action:SendCommand and event.outcome:success
|
|
'''
|
|
|
|
|
|
[[rule.threat]]
|
|
framework = "MITRE ATT&CK"
|
|
[[rule.threat.technique]]
|
|
id = "T1064"
|
|
name = "Scripting"
|
|
reference = "https://attack.mitre.org/techniques/T1064/"
|
|
|
|
[[rule.threat.technique]]
|
|
id = "T1086"
|
|
name = "PowerShell"
|
|
reference = "https://attack.mitre.org/techniques/T1086/"
|
|
|
|
[rule.threat.tactic]
|
|
id = "TA0002"
|
|
name = "Execution"
|
|
reference = "https://attack.mitre.org/tactics/TA0002/"
|
|
|