I'm trying to whitelist a bunch of domains from Azure sentinel rules based on the !hassuffix string operator.
Im trying to do something like this:
AzureDiagnostics
| where destinationDomain !hassuffix ".google.com" and destinationDomain !hassuffix ".azure.com"
But because there is going to be a lot of whitelisted domains and subdomains would like to store the root domain/subdomains in a list which will be in blob storage like:
let whitelist = dyanmic([".google.com", ".azure.com" .........])
Does anyone know the syntax to iterate through each of these and check whether the destinationDomain !hassuffix to each of the dynamic array elements? Or is the only way to have a wall of and's? Thanks
There's no such functionality. You should use
matches regex
instead.