mirror of
https://github.com/elastic/detection-rules
synced 2026-06-08 14:00:08 +00:00
[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>
(cherry picked from commit 7b4611713b)
This commit is contained in:
committed by
tradebot-elastic
parent
0e0c86bad9
commit
e5ec24f76a
+5
-2
@@ -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"
|
||||
)
|
||||
'''
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user