Splunk Search

Is it possible to mask the sensitive data from the configuration files during the search time?

splunkrocks2014
Communicator

I am able to use "SEDCMD" to mask the sensitive data during the index time, but is it possible to mask the sensitive data during the search time? Thanks.

Tags (1)
0 Karma

BBakkenes
Explorer

Yes this is possible.

You can make an calculated field with the name of the field you want to change. The Eval expression should look like this:

replace(fieldname, "text-to-replace", "replacement")

When trying to mask data you can use the same command but with regex:

replace(fieldname, "field=[^;]+", "field=XXXX")

Remember to set sharing to the correct level.

0 Karma

somesoni2
Revered Legend

Try using rex command with mode=sed option.

your base search 
| rex mode=sed "s/(sensitive_data_regex)/replacement_string/g"

Again, this won't change the underlying data, just the raw data that's displayed in table/event visualization. Any fields extracted from _raw before your rex command (e.g. saved field extractions or auto-field extraction) could still have those sensitive data.

0 Karma

splunkrocks2014
Communicator

Thanks somesoni2, but I wanted to make it work from the configuration files.

0 Karma

somesoni2
Revered Legend

You can try some stuff but that method has many loop holes. For example you can setup a calculated field to overwrite the _raw field with masked data. It will do the replacement of _raw values in cases where saved field extractions are called (searches running in Smart Mode OR Verbose mode), but it won't do anything if the search has in Fast Mode and user is just running the base search (not referenced _raw field explicitly).

0 Karma
Get Updates on the Splunk Community!

Splunk AI Assistant for SPL | Key Use Cases to Unlock the Power of SPL

Splunk AI Assistant for SPL | Key Use Cases to Unlock the Power of SPL  The Splunk AI Assistant for SPL ...

Buttercup Games: Further Dashboarding Techniques (Part 5)

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

Customers Increasingly Choose Splunk for Observability

For the second year in a row, Splunk was recognized as a Leader in the 2024 Gartner® Magic Quadrant™ for ...