Last active
August 7, 2023 13:58
-
-
Save f-bader/3830e02326d1929e7936f5b74e48467e to your computer and use it in GitHub Desktop.
Hunting query for Midnight Blizzard based on the IoCs from https://www.microsoft.com/en-us/security/blog/2023/08/02/midnight-blizzard-conducts-targeted-social-engineering-over-microsoft-teams/
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
OfficeActivity | |
| where TimeGenerated > ago(90d) | |
| where UserId has_any ("msftprotection","identityVerification","accountsVerification","azuresecuritycenter","teamsprotection") and UserId has "onmicrosoft" | |
| summarize by UserId |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
OfficeActivity | |
| where TimeGenerated > ago(90d) | |
| where UserId has_any ("msftprotection","identityVerification","accountsVerification","azuresecuritycenter","teamsprotection") and UserId has "onmicrosoft" | |
| where RecordType == "MicrosoftTeams" | |
| where Operation == "MessageSent" | |
| summarize by ChatThreadId | |
| join kind=inner OfficeActivity on ChatThreadId |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment