CodeCommitsIssuesPull requestsActionsInsightsSecurity
a3e8fbc2b37917bd6026cfedc0b246835818f17d

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

Functions/AlertsOnComputer.txt

7lines · modecode

1// If we also wanted to see what alerts fired on these machines we could extend the above query and join them with the SecurityAlerts table from Azure Security Center.
2// Azure Security Center must be enabled for this query to be valid
3| join (SecurityAlert
4 | extend ExtProps=parsejson(ExtendedProperties)
5 | extend Computer=toupper(tostring(ExtProps["Compromised Host"]))
6 )
7on Computer