Query Details
Anomalies
| where RuleName endswith "Rare privileged process calls on a daily basis" and RuleStatus != "Flighting"
| extend
Query = tostring(ExtendedLinks[0]["DetailBladeInputs"])
| summarize
TimeGenerated = min(TimeGenerated),
Description = make_set(Description),
take_any(Entities, Tactics, Techniques)
by RuleName, UserName, Query
| project
TimeGenerated,
RuleName,
Description,
Query,
UserName,
Entities,
Tactics,
Techniques
This query is looking for anomalies where the rule name ends with "Rare privileged process calls on a daily basis" and the rule status is not "Flighting". It then extends the query to include the detail blade inputs, summarizes the data by the minimum time generated, a set of descriptions, and any entities, tactics, and techniques. Finally, it projects the time generated, rule name, description, query, username, entities, tactics, and techniques.

Jose Sebastián Canós
Released: March 27, 2023
Tables
Keywords
Operators