Splunk Search

How to correlate list of users based on IP?

ff170a
Explorer

I am trying to create a report that will take a username(user) and look for the most recent IP address(src_ip) they used, then take that IP address that was found and look back 7 days for all events where the src_ip is the same. I've attempted to use join in different manners but have been unsuccessful.  Here is the latest try, where I get a return of everything, but I just need a complete list of users using that same IP.

 

Any help is appreciated, thanks!

 

 

index=firewall
|where isnotnull(src_ip)
|join type=left [ 
    | search (index=firewall user=mrusername)
    | eval ip=src_ip
    | where isnotnull(ip)
    | fields ip
    ]
| where ip=src_ip
|table user IP src_ip

 

 

 

Labels (2)
Tags (1)
0 Karma

yuanliu
SplunkTrust
SplunkTrust

Let me try to understand this.  You already have a fixed user name "mrusername".  You are looking at this user's latest src_ip, say in the past hour.  Then, you want to search for all events associated with this src_ip in the past 7 days from the same dataset.

Your illustrated code has the right thinking.  But there is no need for join. (In fact, join should always be the last resort.)  All you need is a subsearch that returns the last src_ip for mrusername.

index=firewall earliest=-7d 
    [search index=firewall user=mrusername earliest=-1h
    | stats latest(src_ip) as src_ip]

 

0 Karma

gcusello
SplunkTrust
SplunkTrust

Hi @ff170a,

did you tried:

index=firewall
| where isnotnull(src_ip)
| stats last(src_ip) AS src_ip BY user

Ciao.

Giuseppe

0 Karma
Get Updates on the Splunk Community!

Updated Team Landing Page in Splunk Observability

We’re making some changes to the team landing page in Splunk Observability, based on your feedback. The ...

New! Splunk Observability Search Enhancements for Splunk APM Services/Traces and ...

Regardless of where you are in Splunk Observability, you can search for relevant APM targets including service ...

Webinar Recap | Revolutionizing IT Operations: The Transformative Power of AI and ML ...

The Transformative Power of AI and ML in Enhancing Observability   In the realm of IT operations, the ...