Detection rules › Kusto
Hunt for public facing devices via DeviceNetworkEvents
Find public facing devices via the DeviceNetworkEvents table.
MITRE ATT&CK coverage
| Tactic | Techniques |
|---|---|
| Initial Access |
References
Telemetry coverage
Rule body
DeviceNetworkEvents
| where ActionType contains "InboundConnection"
| where RemoteIPType == "Public"
| distinct DeviceName
Stages and Predicates
Stage 1: source
DeviceNetworkEvents
Stage 2: where
| where ActionType contains "InboundConnection"
Stage 3: where
| where RemoteIPType == "Public"
Stage 4: distinct
| distinct DeviceName
Indicators
These rows show field, operator, and value matches.
| Field | Kind | Values | Search |
|---|---|---|---|
ActionType | contains |
| field:"ActionType" kind:contains value:"InboundConnection" |
RemoteIPType | eq |
| field:"RemoteIPType" kind:eq value:"Public" |