Find Winlogon with outbound connections #MDE
Kusto:
DeviceProcessEvents
| where FileName == "winlogon.exe"
| where ActionType == "CreateRemoteThread"
| join (
DeviceNetworkEvents
| where RemoteIPType == "Public"
) on DeviceId
Find Winlogon with outbound connections #MDE
Kusto:
DeviceProcessEvents
| where FileName == "winlogon.exe"
| where ActionType == "CreateRemoteThread"
| join (
DeviceNetworkEvents
| where RemoteIPType == "Public"
) on DeviceId