Splunk Search

Mapping the location of a TrueClientIP on a Cluster or Choropleth Map.

JChute
Explorer

Is it possible to Map out the locations of the 'TrueClientIP' Field in a search using either a Cluster or Choropleth Map.

I have the below Search that shows me any website activity with an "UNKNOWN" Redirect URL and "UNKNOWN" Cookie Date and would like to Chart the location of where the TrueClientIP is coming from/based (Public IP).

sourcetype=iis CookieData="\"UNKNOWN\"" RedirectTo="\"UNKNOWN\"" TrueClientIP!="\"UNKNOWN\"" TrueClientIP!="\"127.0.0.1\"" | timechart minspan=1h count by TrueClientIP limit=5 usenull=f useother=f

Are you aware of a way that Splunk can pick up the location of a Public IP by its IP Address? Is there any third party apps etc. or way I can link this Data into my search and show this on a Map.

Regards
Jonathan

0 Karma
1 Solution

gvmorley
Contributor

Hi,

You could try using a combination of iplocation and geostats to generate a report.

Here's an example.

This first part is just to create a result to test with (you'd use the actual data from your search):

| makeresults
| fields - _time
| eval TrueClientIP="222.205.40.26"

You can then pipe the results to the iplocation command, which will lookup that latitude and longitude:

| iplocation TrueClientIP

Which returns:

alt text

Then pipe this to geostats with the aggregation function. So something like this:

| geostats count by TrueClientIP

If you then go to the Visualization tab and select the 'Cluster Map' chart, you should get something like this:

alt text

Have a go with those commands and see how you get on.

View solution in original post

gvmorley
Contributor

Hi,

You could try using a combination of iplocation and geostats to generate a report.

Here's an example.

This first part is just to create a result to test with (you'd use the actual data from your search):

| makeresults
| fields - _time
| eval TrueClientIP="222.205.40.26"

You can then pipe the results to the iplocation command, which will lookup that latitude and longitude:

| iplocation TrueClientIP

Which returns:

alt text

Then pipe this to geostats with the aggregation function. So something like this:

| geostats count by TrueClientIP

If you then go to the Visualization tab and select the 'Cluster Map' chart, you should get something like this:

alt text

Have a go with those commands and see how you get on.

JChute
Explorer

@gvmorley Thank you, I get the results I need, but the Map doesn't work. My search is -- sourcetype=iis CookieData="\"UNKNOWN\"" RedirectTo="\"UNKNOWN\"" TrueClientIP!="\"UNKNOWN\"" TrueClientIP!="\"127.0.0.1\"" -- I can't seem to get his right using the code you have provided, mine seems off (Or it just can’t determine the Public IP location, possibly as I cannot see a Long/Lat field in the Events?

0 Karma

JChute
Explorer

I've managed to get this working, but only for 1 IP at a time, which I specify on a dropdown that has a Token assigned - $PublicIP$ - when this is set to the wildcard 'All/*' the search (eval section) does not like this. Here is my amended search;

sourcetype=iis_dominos_online_adv CookieData="\"UNKNOWN\"" RedirectTo="\"UNKNOWN\"" 
| fields - _time
| eval TrueClientIP=$PublicIP_tkn$
| iplocation TrueClientIP
| geostats count by TrueClientIP
0 Karma

gvmorley
Contributor

Hi,

Sorry for the delayed reply.

If you've got it working for 1 IP, then that's a great start.

My guess it that you may need to amend your search slightly with regards to where you are using the token.

Assuming you select a single IP in your dropdown (for example 1.1.1.1), your eval becomes:

| eval TrueClientIP=1.1.1.1

But if you have an 'All' label, with the value '*', then this mean your eval becomes:

| eval TrueClientIP=*

Since '*' is not an IP address, it's not going to work with the iplocation command.

Perhaps you could use the token in the initial search string. So something like:

sourcetype=iis_dominos_online_adv CookieData="\"UNKNOWN\"" RedirectTo="\"UNKNOWN\"" TrueClientIP=$PublicIP_tkn$

This would then return the single result (assuming the IP from your dropdown is unique), or return multiple results if you select 'All/*'.

See if that gets you a bit closer to what you're looking for.

0 Karma
Get Updates on the Splunk Community!

What’s New in Splunk App for PCI Compliance 5.3.1?

The Splunk App for PCI Compliance allows customers to extend the power of their existing Splunk solution with ...

Extending Observability Content to Splunk Cloud

Register to join us !   In this Extending Observability Content to Splunk Cloud Tech Talk, you'll see how to ...

What's new in Splunk Cloud Platform 9.1.2312?

Hi Splunky people! We are excited to share the newest updates in Splunk Cloud Platform 9.1.2312! Analysts can ...