Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Rule Tuning] AWS IAM Deactivation of MFA Device #1132

Merged
merged 7 commits into from
Apr 23, 2021
7 changes: 3 additions & 4 deletions rules/aws/impact_iam_deactivate_mfa_device.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
[metadata]
creation_date = "2020/05/26"
maturity = "production"
updated_date = "2021/03/22"
updated_date = "2021/04/20"

[rule]
author = ["Elastic"]
author = ["Elastic", "Austin Songer"]
description = """
Identifies the deactivation of a specified multi-factor authentication (MFA) device and removes it from association with
the user name for which it was originally enabled. In AWS Identity and Access Management (IAM), a device must be
Expand Down Expand Up @@ -36,7 +36,7 @@ timestamp_override = "event.ingested"
type = "query"

query = '''
event.dataset:aws.cloudtrail and event.provider:iam.amazonaws.com and event.action:DeactivateMFADevice and event.outcome:success
event.dataset:aws.cloudtrail and event.provider:iam.amazonaws.com and event.action:(DeactivateMFADevice or DeleteVirtualMFADevice) and event.outcome:success
'''


Expand All @@ -52,4 +52,3 @@ reference = "https://attack.mitre.org/techniques/T1531/"
id = "TA0040"
name = "Impact"
reference = "https://attack.mitre.org/tactics/TA0040/"