Forum Discussion

Jeff Walzer's avatar
Jeff Walzer
Iron Contributor
Oct 06, 2021
Solved

Sentinel Watchlist and KQL query

I created a Sentinel VIP user watchlist and would like to use the SecurityAlert logs   I have the following query:   SecurityAlert | extend User_Account_ = tostring(parse_json(ExtendedProperties...
  • GaryBushey's avatar
    Oct 06, 2021

    Jeff Walzer Is there any reason you cannot just change the extend in line 2 to use the User Principal Name like:

    | extend ['User Principal Name'] = tostring(parse_json(ExtendedProperties).["User Account"])

     

    If you need to keep that User_Account variable you can do

    | extend ['User Principal Name'] = User_Account

Resources