Forum Discussion

akshay250692's avatar
akshay250692
Brass Contributor
Aug 24, 2022

KQL query not showing sourec country info

Hi Team,   I created one query from commonsecurity table it showing destination country info but not source country. Please help me to find out source country info also. source country column getti...
  • Clive_Watson's avatar
    Aug 25, 2022
    Generally if the Vendor doesn't supply the data you would have to try and look it up in another Table.

    By the way you could have used ASIM for this (simple example):

    _Im_NetworkSession_PaloAltoCEFV06(starttime=ago(1d))
    // or use _ASim_NetworkSession if you dont need a parameter https://docs.microsoft.com/en-us/azure/sentinel/network-normalization-schema
    | where Activity =~"Threat"
    | distinct DstGeoCountry, SrcGeoCountry

    note: GeoCountry are optional in the schema

Resources