Getting Data In

Why is WILDCARD in lookup not working?

Toki
Explorer

I am using splunk cloud.
I would like to use the lookup file to find out if there is an IP corresponding to the blacklist, but only 10.50.88.22 is hit.

[definition of lookup]
WILDCARD (IP)

[Contents of lookupfile]
IP
10.50.88.22
10.30.50.70

[Search statement]
|makeresults format=csv data="IP
10.50.88.220
10.50.88.22
10.50.88.2"
|lookup test.csv IP OUTPUT IP as list_IP
|where list_IP IN(IP)
|table IP list_IP

If it works correctly, I want the following two to hit.
10.50.88.220
10.50.88.22

Referencing past questions and changing the lookup definition to the following did not work.
WILDCARD (IP)

Is my search statement wrong?
Any advice would be greatly appreciated.

Labels (1)
0 Karma
1 Solution

bowesmana
SplunkTrust
SplunkTrust

Your lookup should contain an asterisk in the data where you want wildcard matching to work, e.g.

10.50.88.22*

but also you are using a lookup on the CSV itself, which does NOT support any wildcard lookup. You must use the definition name to perform the lookup, not the CSV file.

View solution in original post

0 Karma

bowesmana
SplunkTrust
SplunkTrust

Your lookup should contain an asterisk in the data where you want wildcard matching to work, e.g.

10.50.88.22*

but also you are using a lookup on the CSV itself, which does NOT support any wildcard lookup. You must use the definition name to perform the lookup, not the CSV file.

0 Karma

Toki
Explorer

Thank you for your answer.
It is solved!

0 Karma
Get Updates on the Splunk Community!

Detecting Brute Force Account Takeover Fraud with Splunk

This article is the second in a three-part series exploring advanced fraud detection techniques using Splunk. ...

Buttercup Games: Further Dashboarding Techniques (Part 9)

This series of blogs assumes you have already completed the Splunk Enterprise Search Tutorial as it uses the ...

Buttercup Games: Further Dashboarding Techniques (Part 8)

This series of blogs assumes you have already completed the Splunk Enterprise Search Tutorial as it uses the ...