Network footprint (2)
Description
Query 1 shows you any network communication happened from endpoints to a specific Remote IP or Remote URL. Ensure to update RemoteIP and RemoteURL variable. For questions @MiladMSFT on Twitter or milad.aslaner@microsoft.com by email.
Query · kql
// Query 3 allows you to find network communication to an IP or URL in the DeviceNetworkEvents table, as well as in DeviceEvents for other events (SmartScreen, launch browser with URL, more) // Ensure to update RemoteIP and RemoteURL variable. find in (DeviceEvents, DeviceNetworkEvents) where RemoteIP == "IP ADDRESS GOES HERE" or RemoteUrl =~ "URL GOES HERE" project DeviceName, ActionType, FileName, Timestamp