I have a lookup table (imported CSV) containing lots of Indicators of compromise in a format like this:
ioc_value,ioc_type
e8bf8789a98b009c98d98c98,md5 https://malicious.com,url
Is there any way to combine this lookup table with a search like this: exists:url AND lookup(ioc_lookup, url)
I.e. I want to find all events where a certain field exists and if so I want to search through the lookup table.
This would be tremendously helpful to find past Zero-Day Exploits whose IOCs weren’t in the lookup table at the point when the incident happened.
Thanks but that is not what I meant.
I want to match every event with a condition against my lookup table. But perhaps that is something one could combine.
Let me describe it more in detail in the other thread.