Sdílet prostřednictvím


Dotazy na tabulku AlertInfo

Výstrahy podle techniky MITRE ATT&CK

Vypište počet upozornění podle MITRE ATT&techniky CK v sestupném pořadí.

AlertInfo
| where isnotempty(AttackTechniques)
| mvexpand todynamic(AttackTechniques) to typeof(string)
| summarize AlertCount = dcount(AlertId) by AttackTechniques
| sort by AlertCount desc