Splunk Search

show only infected with vulnerability on 1 machine

xavierpaul
New Member

hi,

I am a newbie in splunk

I have this one use case I am trying. search for a machine that have malware infection AND it has a vulnerability. anyone can give me pointers the best search to do it?

(sourcetype="vulnscan" severity=critical) OR sourcetype="avscan" | table av_threatname severity hostname | eval infectedandvulnerable=coalesce(av_threatname,severity)

Tags (1)
0 Karma

DMohn
Motivator

You have to use two searches and join the results of them.

Assuming your individual sourcetypes have the hostname field in common (you have to have one common field in both searches, otherwise you will have to evalthem to be identical) you may use this search:

 sourcetype=vulnscan severity=critical | table hostname | join hostname [search sourcetype=avscan] 

For more info on the join command, check => http://docs.splunk.com/Documentation/Splunk/latest/SearchReference/Join

0 Karma
Get Updates on the Splunk Community!

Celebrating Fast Lane: 2025 Authorized Learning Partner of the Year

At .conf25, Splunk proudly recognized Fast Lane as the 2025 Authorized Learning Partner of the Year. This ...

Tech Talk Recap | Mastering Threat Hunting

Mastering Threat HuntingDive into the world of threat hunting, exploring the key differences between ...

Observability for AI Applications: Troubleshooting Latency

If you’re working with proprietary company data, you’re probably going to have a locally hosted LLM or many ...