Splunk Search

Need help combining the results of two searches into something cohesive

splunkadunk5
Explorer

Hello!

First, I'll admit that I'm relatively new to Splunk, so thank you in advance! I've been tasked to build a search that will detect remote users logging on to local admin accounts. So far I've managed to pull the local admins via WMI using the following search string:

sourcetype="WMI:LocalAdmins" Name="Administrators" | rex field=_raw "PartComp.*?,Name=\"(?<UserName>[^\"]+)\"" | dedup host,Name,UserName | transaction host,Name | table host,UserName

I also know that I can detect external logins using this string (this is specific enough for my purposes):

sourcetype="WinEventLog:Security" EventCode=4624 Logon_Type=3

Now.. I need to find a way to utilize the local admins in the first search, and narrow the second search to only the local admin accounts identified. I'm still progressing in my research into this, but if you fine folks could point me in the right direction I would definitely be thankful.

0 Karma
1 Solution

Raghav2384
Motivator

Try this

sourcetype="WinEventLog:Security" EventCode=4624 Logon_Type=3|join type=outer [search sourcetype="WMI:LocalAdmins" Name="Administrators" | rex field=_raw "PartComp.*?,Name=\"(?[^\"]+)\"" | dedup host,Name,UserName | transaction host,Name | fields UserName]

Hope this helps!
Thanks,
Raghav

View solution in original post

Raghav2384
Motivator

Try this

sourcetype="WinEventLog:Security" EventCode=4624 Logon_Type=3|join type=outer [search sourcetype="WMI:LocalAdmins" Name="Administrators" | rex field=_raw "PartComp.*?,Name=\"(?[^\"]+)\"" | dedup host,Name,UserName | transaction host,Name | fields UserName]

Hope this helps!
Thanks,
Raghav

splunkadunk5
Explorer

This seems to be working! Didn't think the join command could be implemented so simply; I'll have to read up on that one.

Thank you so much Raghav. Have a great day.

Raghav2384
Motivator

Glad i could help!

Get Updates on the Splunk Community!

.conf24 | Registration Open!

Hello, hello! I come bearing good news: Registration for .conf24 is now open!   conf is Splunk’s rad annual ...

ICYMI - Check out the latest releases of Splunk Edge Processor

Splunk is pleased to announce the latest enhancements to Splunk Edge Processor.  HEC Receiver authorization ...

Introducing the 2024 SplunkTrust!

Hello, Splunk Community! We are beyond thrilled to announce our newest group of SplunkTrust members!  The ...