entra_id_group_deletion_success


Description

Detects when a group is deleted.

Query · yara_l

events:
    $group.metadata.event_type = "GROUP_DELETION"
    $group.metadata.product_event_type = "Delete group"
    $group.metadata.product_name = "Azure AD Directory Audit"
    $group.metadata.vendor_name = "Microsoft"
    $group.security_result.action = "ALLOW"
    $group.principal.user.userid = $user

  match:
    $user over 5m

  outcome:
    $risk_score = 35
    $event_count = count_distinct($group.metadata.id)
    $user_agent = array_distinct($group.network.http.user_agent)
    $principal_ip = array_distinct($group.principal.ip)
    $principal_user_userid = array_distinct($group.principal.user.email_addresses)
    $group_name = array_distinct($group.target.resource.name)
    $group_guid = array_distinct($group.target.resource.product_object_id)

  condition:
    $group
Raw source entra_id_group_deletion_success · YARA-L
Esc
Published by chronicle/detection-rules ↗, licensed under Apache 2.0 ↗. Reproduced here unmodified.
rule entra_id_group_deletion_success {

  meta:
    author = "Google Cloud Security"
    description = "Detects when a group is deleted."
    rule_id = "mr_d6a3162a-3ec5-45c1-a7cd-ff2988582924"
    rule_name = "Entra ID Successful Group Deletion"
    type = "alert"
    platform = "azure"
    data_source = "azure ad audit"
    severity = "Low"
    priority = "Low"

  events:
    $group.metadata.event_type = "GROUP_DELETION"
    $group.metadata.product_event_type = "Delete group"
    $group.metadata.product_name = "Azure AD Directory Audit"
    $group.metadata.vendor_name = "Microsoft"
    $group.security_result.action = "ALLOW"
    $group.principal.user.userid = $user

  match:
    $user over 5m

  outcome:
    $risk_score = 35
    $event_count = count_distinct($group.metadata.id)
    $user_agent = array_distinct($group.network.http.user_agent)
    $principal_ip = array_distinct($group.principal.ip)
    $principal_user_userid = array_distinct($group.principal.user.email_addresses)
    $group_name = array_distinct($group.target.resource.name)
    $group_guid = array_distinct($group.target.resource.product_object_id)

  condition:
    $group
}

Detection rules belong to the projects that publish them and remain under their own licenses. This site indexes and links to them; it claims no rights in them.