Getting Data In

How to search for logins not in CSV?

albert111
New Member

I am trying to write a query in Splunk that will tell me if any user IDs in my CSV file were used to log into any machines that ARE NOT in my CSV file. I have a CSV file called "MLT_List.csv" with three fields. The second field contains the user IDs and is called "User_ID". The third field is called "Computers". So I want to search Splunk for any successful logins with the user IDs in the CSV that are not logging into any of the computers in the CSV. I don't know if I am being clear or not. Thanks in advance for any help!

0 Karma

rsennett_splunk
Splunk Employee
Splunk Employee

Comparing the result of a search to lookup values is a very commonly used practice and you describe it perfectly.

The way I phrased it is actually a clue as to how you perform this.
You have a lookup table with valid hosts and users. (fields host, user)
You have a search that retrieves successful logins and the hosts.

To filter the search to show only those successful logins that occur on hosts NOT in your CSV you do this:

yourSearchwith_host NOT [ inputlookup yourlookup |fields host ]

so for instance you might say something like this:

index=blah sourcetype=blah_foo host=* login_status=success NOT [inputlookup legit_user_host.csv | fields host]

To really see what's going on, you'll want to look at the job inspector after it runs.

to make sense of this, you can run each part of the search independently and imagine the 'venn diagram' the "NOT" creates.
run index=blah sourcetype=blah_foo host=* login_status=success (any search that gives a list of the successful logins)
then you can independently run |inputlookup legit_user_host.csv|fields host run it all together and Splunk will give you the results showing when the data in splunk does NOT match the lookup list.

If you run the same and remove the NOT you get the list that DOES match...

With Splunk... the answer is always "YES!". It just might require more regex than you're prepared for!
0 Karma

albert111
New Member

Sorry, I am really new at Splunk. What would I replace "yourSearchwith_host" in my query?

0 Karma

rsennett_splunk
Splunk Employee
Splunk Employee

understood. I expanded my answer for you. let me know if this helps.

With Splunk... the answer is always "YES!". It just might require more regex than you're prepared for!
0 Karma
Get Updates on the Splunk Community!

Routing logs with Splunk OTel Collector for Kubernetes

The Splunk Distribution of the OpenTelemetry (OTel) Collector is a product that provides a way to ingest ...

Welcome to the Splunk Community!

(view in My Videos) We're so glad you're here! The Splunk Community is place to connect, learn, give back, and ...

Tech Talk | Elevating Digital Service Excellence: The Synergy of Splunk RUM & APM

Elevating Digital Service Excellence: The Synergy of Real User Monitoring and Application Performance ...