New domain added to Whitelist
Description
'This hunting query identifies new domains added to the domain login whitelist in Zoom.'
Query · kql
ZoomLogs
| where Event =~ "account.settings_updated"
| extend NewDomains = columnifexists("payload_object_enforce_logon_domains", "")
| where isnotempty(NewDomains)
| project TimeGenerated, Event, User, NewDomains
| extend timestamp = TimeGenerated, AccountCustomEntity = User