[Rule Tuning] Entra ID Protection Sign-in and User Risk Detection Rules - Filter Remediated Risk States (#5535)

Fixes #5534

Co-authored-by: Samirbous <64742097+Samirbous@users.noreply.github.com>
This commit is contained in:
Terrance DeJesus
2026-01-09 11:27:52 -05:00
committed by GitHub
parent 2d5d826be7
commit 7b4611713b
2 changed files with 11 additions and 5 deletions
@@ -3,7 +3,7 @@ creation_date = "2025/04/29"
integration = ["azure"]
maturity = "production"
promotion = true
updated_date = "2025/09/08"
updated_date = "2026/01/07"
[rule]
author = ["Elastic"]
@@ -95,7 +95,10 @@ type = "query"
query = '''
event.dataset: "azure.identity_protection" and
event.action: "User Risk Detection" and
azure.identityprotection.properties.activity: "signin"
azure.identityprotection.properties.activity: "signin" and
not azure.identityprotection.properties.risk_state: (
"remediated" or "dismissed" or "confirmedSafe"
)
'''
@@ -3,7 +3,7 @@ creation_date = "2025/06/02"
integration = ["azure"]
maturity = "production"
promotion = true
updated_date = "2025/09/08"
updated_date = "2026/01/07"
[rule]
author = ["Elastic"]
@@ -91,8 +91,11 @@ type = "query"
query = '''
event.dataset: "azure.identity_protection" and
event.action: "User Risk Detection" and
azure.identityprotection.properties.activity: "user"
event.action: ("User Risk Detection" or "Risky user") and
azure.identityprotection.properties.activity: "user" and
not azure.identityprotection.properties.risk_state: (
"remediated" or "dismissed" or "confirmedSafe"
)
'''