Forum Discussion

ahhann's avatar
ahhann
Copper Contributor
Jan 26, 2022
Solved

How to correlate Security Alert Entities further with a WorkList

Hi all,   Newbie to Sentinel.  In old school SIEM, one can easily correlate specific correlated Security Alert entities with a watchlist via data schema mapping.   However for Sentinel, i notice...
  • m_zorich's avatar
    Jan 26, 2022

    Hi there, the best way to extract the individual entities from alerts within the SecurityAlerts table is using the mv-expand operator. There are some examples here - https://github.com/reprise99/Sentinel-Queries/tree/main/Security%20Alert

     

    In your example there if you wanted to retrieve the IP address, you could do

     

    | extend x = todynamic(Entities)
    | mv-expand x
    | parse-where x with * '$id":"4","' IPAddress '","Type' *

    That would create you a new column called IPAddress with everything between $id":"4"," and ","Type

     

    You can then map them to other tables or watchlists etc like normal

     

Resources