Splunk Search

Passing Value from Subsearch to Parent Search

jstocker
New Member

I am fairly new to Splunk and only have the basics under my belt at best. I'm having trouble proving out the following use case: 

Taking a malicious URL (threatURL) from email threat (index=emailThreat) events and then querying the firewall (index=firewall) for any user activity including the referenced malicious URL. So far I have the following search:

index=firewall log_subtype=url [search index=emailThreat | dedup threatUrl | table threatUrl] | table time, url, user

Separately, the the two searches work and return the expected value. However, when put together, the search returns no results. Not sure what I'm missing.

Labels (1)
0 Karma
1 Solution

richgalloway
SplunkTrust
SplunkTrust

The trick to subsearches is to make sure they return a string that makes sense when it is incorporated into the main search.

Try running the subsearch like this

index=emailThreat | dedup threatUrl | fields threatUrl | format

That will generate the text that the main search will see.  Make sure it looks OK and that the firewall index contains a threatUrl field.  If the field has a different name, add a rename command before format in the subsearch.

---
If this reply helps you, Karma would be appreciated.

View solution in original post

isoutamo
SplunkTrust
SplunkTrust

Hi

can you give sample events from indexes?

Anyhow you could try something like

(index=firewall_los log_subtype=url url=*) OR (index=emailThreath threathUrl=* user=*)
| eval commonUrl=coalesce(url, threathUrl)
| stats first(_time) as _time values(user) as user by commonUrl
| table _time, commonUrl, user
0 Karma

richgalloway
SplunkTrust
SplunkTrust

The trick to subsearches is to make sure they return a string that makes sense when it is incorporated into the main search.

Try running the subsearch like this

index=emailThreat | dedup threatUrl | fields threatUrl | format

That will generate the text that the main search will see.  Make sure it looks OK and that the firewall index contains a threatUrl field.  If the field has a different name, add a rename command before format in the subsearch.

---
If this reply helps you, Karma would be appreciated.
Career Survey
First 500 qualified respondents will receive a $20 gift card! Tell us about your professional Splunk journey.

Can’t make it to .conf25? Join us online!

Get Updates on the Splunk Community!

Can’t Make It to Boston? Stream .conf25 and Learn with Haya Husain

Boston may be buzzing this September with Splunk University and .conf25, but you don’t have to pack a bag to ...

Splunk Lantern’s Guide to The Most Popular .conf25 Sessions

Splunk Lantern is a Splunk customer success center that provides advice from Splunk experts on valuable data ...

Unlock What’s Next: The Splunk Cloud Platform at .conf25

In just a few days, Boston will be buzzing as the Splunk team and thousands of community members come together ...