File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -22,16 +22,16 @@ tags:
2222query : |
2323 let known_locations = (SigninLogs
2424 | where TimeGenerated between(ago(7d)..ago(1d))
25- | where ResultType = = 0
25+ | where ResultType ! = 0
2626 | extend LocationDetail = strcat(Location, "-", LocationDetails.state)
2727 | summarize by LocationDetail);
2828 let known_asn = (SigninLogs
2929 | where TimeGenerated between(ago(7d)..ago(1d))
30- | where ResultType = = 0
30+ | where ResultType ! = 0
3131 | summarize by AutonomousSystemNumber);
3232 SigninLogs
3333 | where TimeGenerated > ago(1d)
34- | where ResultType = = 0
34+ | where ResultType ! = 0
3535 | where isempty(DeviceDetail.deviceId)
3636 | where AuthenticationRequirement == "singleFactorAuthentication"
3737 | extend LocationParsed = parse_json(LocationDetails), DeviceParsed = parse_json(DeviceDetail)
@@ -60,7 +60,7 @@ entityMappings:
6060 columnName : AppId
6161 - identifier : Name
6262 columnName : AppDisplayName
63- version : 1.0.4
63+ version : 1.0.5
6464kind : Scheduled
6565metadata :
6666 source :
You can’t perform that action at this time.
0 commit comments