Query Details
Tags:
Query:
DeviceEvents
| where ActionType contains "pipe"
| extend parsed = parse_json(AdditionalFields)
| where parsed.PipeName contains "psexesvc"
References:
This KQL (Kusto Query Language) query is designed to search through device event logs for specific activities related to a particular type of named pipe. Here's a simple breakdown of what the query does:
DeviceEvents table.ActionType field contains the word "pipe".AdditionalFields column as JSON and creates a new column called parsed.PipeName field within the parsed JSON contains the string "psexesvc".In summary, this query is looking for device events involving pipes, specifically those where the pipe name includes "psexesvc".

Ali Hussein
Released: October 11, 2023
Tables
Keywords
Operators