Splunk Search

How to find out if a URL contains a specific IP or host name?

Toki
Explorer

I'm using lookup but don't know how to do a partial match instead of an exact match

Example: 10.20.30.40 is in the list, and I want to get the result of URL=https://10.20.30.40~, is that possible?

Labels (1)
0 Karma
1 Solution

yuanliu
SplunkTrust
SplunkTrust

So, you are asking about match_type=WILDCARD.  If you define lookups with configuration file, see Lookup tables; the following is an excerpt

 

 

match_type = <string>
* A comma and space-delimited list of <match_type>(<field_name>)
  specification to allow for non-exact matching
* The available match_type values are WILDCARD, CIDR, and EXACT. Only fields
  that should use WILDCARD or CIDR matching should be specified in this list.
* Default: EXACT

If you use Splunk Web, when you define a lookup, check "Advanced options", then in "Match type", enter said space-delimited list of <match_type>(<field_name>).  For example, enter

WILDCARD(URL)

View solution in original post

Tags (1)
0 Karma

yuanliu
SplunkTrust
SplunkTrust

To paraphrase an old Linux joke, with SPL, everything is possible except brew coffee.

It all depends on what you define as "get the result of".  At the most basic level, you can do

//10.20.30.40*

This will match http://10.20.30.40, https://10.20.30.40, https://10.20.30.40/, and so on.  In fact, as the character ~ is a term boundary, you can even skip the asterisk and search

//10.20.30.40

Of course this will also match "garbage //10.20.30.40~".  To be more selective, you can try

URL=http*://10.20.30.40*

or an unlimited number of refined variants.

0 Karma

Toki
Explorer

Thank you for your answer.
I apologize for the poor way of writing.
The example "10.20.30.40" is in the csv file of the blacklist, and other IPs and host names are included, and this is a method to judge them all at once.

0 Karma

yuanliu
SplunkTrust
SplunkTrust

So, you are asking about match_type=WILDCARD.  If you define lookups with configuration file, see Lookup tables; the following is an excerpt

 

 

match_type = <string>
* A comma and space-delimited list of <match_type>(<field_name>)
  specification to allow for non-exact matching
* The available match_type values are WILDCARD, CIDR, and EXACT. Only fields
  that should use WILDCARD or CIDR matching should be specified in this list.
* Default: EXACT

If you use Splunk Web, when you define a lookup, check "Advanced options", then in "Match type", enter said space-delimited list of <match_type>(<field_name>).  For example, enter

WILDCARD(URL)
Tags (1)
0 Karma

Toki
Explorer

Thank you.
It means that you need to tweak the settings, not the search statement.

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 ...