Last active
August 17, 2022 23:50
-
-
Save dirkjanm/814b4fcd75f0c0f13f5c05b7edbee794 to your computer and use it in GitHub Desktop.
KQL query to hunt for guest invite abuse
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
// Guest invite abuse hunting | |
// Query by @_dirkjan / Outsider Security - released as CC BY (https://creativecommons.org/licenses/by/2.0/) | |
AuditLogs | |
| where OperationName =~ "Update user" | |
| where Result =~ "success" | |
| mv-expand target = TargetResources | |
| where tostring(InitiatedBy.user.userPrincipalName) has "@" or tostring(InitiatedBy.app.displayName) has "@" | |
| extend targetUPN = tostring(TargetResources[0].userPrincipalName) | |
| extend targetId = tostring(TargetResources[0].id) | |
| extend targetType = tostring(TargetResources[0].type) | |
| extend modifiedProps = TargetResources[0].modifiedProperties | |
| extend initiatedUser = tostring(InitiatedBy.user.userPrincipalName) | |
| mv-expand modifiedProps | |
| where modifiedProps.displayName =~ "UserState" | |
| mv-expand AdditionalDetails | |
| where AdditionalDetails.key =~ "UserType" and AdditionalDetails.value =~ "Guest" | |
| extend new_value_set = parse_json(tostring(modifiedProps.newValue)) | |
| extend old_value_set = parse_json(tostring(modifiedProps.oldValue)) | |
| where new_value_set[0] =~ "Accepted" and old_value_set[0] =~ "PendingAcceptance" | |
| project-away old_value_set, new_value_set, modifiedProps |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment