Skip to content

Latest commit

 

History

History
13 lines (12 loc) · 427 Bytes

pie-chart-explicit-credentials-processes.md

File metadata and controls

13 lines (12 loc) · 427 Bytes

Pie chart explicit credentials processes

#count #render #piechart

The following example shows a pie chart of processes that used explicit credentials in the last week

SecurityEvent
| where TimeGenerated > ago(7d)
// filter by id 4648 ("A logon was attempted using explicit credentials")
| where EventID == 4648
| summarize count() by Process
| render piechart