Detection rules › YARA-L
Enumeration of updatable groups in the Microsoft Graph API
This detects actions intended to identify updatable groups in Entra ID. GraphRunner contains a function called Get-UpdatableGroups but other tools may as well.
References
Rule body yaral
/*
* Copyright 2025 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
rule ms_graph_updatable_groups_enumeration {
meta:
author = "Google Cloud Security"
description = "This detects actions intended to identify updatable groups in Entra ID. GraphRunner contains a function called Get-UpdatableGroups but other tools may as well."
rule_id = "mr_e1deedad-14f9-4718-9e0b-4f58aae38fdc"
rule_name = "Enumeration of updatable groups in the Microsoft Graph API"
reference = "https://github.com/dafthack/GraphRunner/blob/main/GraphRunner.ps1"
type = "alert"
data_source = "MS Graph Activity Logs"
platform = "Azure"
severity = "Low"
priority = "Low"
events:
$group.metadata.event_type = "NETWORK_HTTP"
$group.metadata.product_event_type = "Microsoft Graph Activity"
$group.target.url = "https://graph.microsoft.com/v1.0/groups" nocase
//Can be tuned for specific User Agent strings being used - by default GraphRunner does not forge the UA for this action
//$group.network.http.user_agent = /PowerShell/ nocase
$group.network.http.method = "GET"
$group.network.http.response_code = 200
$group.principal.ip = $ip
$group.network.session_id = $session
$api.metadata.event_type = "NETWORK_HTTP"
$api.metadata.product_event_type = "Microsoft Graph Activity"
$api.target.url = "https://graph.microsoft.com/beta/roleManagement/directory/estimateAccess" nocase
//Can be tuned for specific User Agent strings being used - by default GraphRunner does not forge the UA for this action
//$api.network.http.user_agent = /PowerShell/ nocase
$api.network.http.method = "POST"
$api.network.http.response_code = 200
$api.principal.ip = $ip
$api.network.session_id = $session
match:
$ip, $session over 5m
outcome:
$risk_score = 35
$event_count = count_distinct($group.metadata.id) + count_distinct($api.metadata.id)
$requesting_user_guid = array_distinct($api.principal.user.userid)
$requesting_ip = array_distinct($api.principal.ip)
$user_agent = array_distinct($api.network.http.user_agent)
$location = array_distinct($api.principal.location.name)
$target_application_id_guid = array_distinct($api.target.resource.product_object_id)
$session_id = array_distinct($api.network.session_id)
condition:
$group and $api
}
Detection logic
Fires when at least one $group event in the 5m window and at least one $api event in the 5m window.
Events
$api
metadata.product_event_type = "Microsoft Graph Activity"target.url = "https://graph.microsoft.com/beta/roleManagement/directory/estimateAccess"network.http.method = "POST"network.http.response_code = "200"
$group
metadata.product_event_type = "Microsoft Graph Activity"target.url = "https://graph.microsoft.com/v1.0/groups"network.http.method = "GET"network.http.response_code = "200"
Correlation
Outcome
Fields the detection emits on a match. $risk_score drives alerting; Chronicle surfaces the rest on the detection.
| Field | Expression |
|---|---|
risk_score | 35 |
event_count | count_distinct($group.metadata.id) + count_distinct($api.metadata.id) |
requesting_user_guid | array_distinct($api.principal.user.userid) |
requesting_ip | array_distinct($api.principal.ip) |
user_agent | array_distinct($api.network.http.user_agent) |
location | array_distinct($api.principal.location.name) |
target_application_id_guid | array_distinct($api.target.resource.product_object_id) |
session_id | array_distinct($api.network.session_id) |