Splunk Search

How to correlate logs with different sources to detect events

syh
Engager

Hi, what I am trying to do is to create a search query based on two sources.
Source 1 will be the logs I want to investigate in. Source 2 will be a list of malicious domains I want to compare Source 1 with. (Source 2 could also be a csv file I obtained online).
The result I want will be that I am able to detect malicious domains which maybe in source 1, based on data in source 2 (I hope I'm making sense).

I'm new to Splunk so any help will be greatly appreciated. Thank you.

0 Karma

woodcock
Esteemed Legend

Make/keep it a lookup like this:

index=YouShouldAlwaysSpecifyAnIndex ... | lookup YourThreatLookupFileHere.csv YourKeyFieldNameInLookup AS YourKeyFieldNameInEvents

This will pull in all the other fields from the CSV and attach them to the appropriate events.

0 Karma

syh
Engager

Ok, then where in the query should I add my source1?

0 Karma

renjith_nair
Legend

Hi @syh,

You could do it multiple ways using join , subsearch etc . However easiest way is to use stats something similar to

index="your index" (source="source1" OR source="source2") 
|stats dc(source) as presence, values(*) as * by domains|where presence>1
---
What goes around comes around. If it helps, hit it with Karma 🙂
0 Karma
Get Updates on the Splunk Community!

Splunk Observability for AI

Don’t miss out on an exciting Tech Talk on Splunk Observability for AI!Discover how Splunk’s agentic AI ...

Splunk Enterprise Security 8.x: The Essential Upgrade for Threat Detection, ...

Watch On Demand the Tech Talk on November 6 at 11AM PT, and empower your SOC to reach new heights! Duration: ...

Splunk Observability as Code: From Zero to Dashboard

For the details on what Self-Service Observability and Observability as Code is, we have some awesome content ...