Splunk Search

How to mask the bank balance to be shown in splunk logs?

LBG_Ankit
New Member

Hi,
How can I mask the bank balance in splunk? it is showing something like this:

mybal=2426.88,availableBal=2426.88 and I need to replace numbers with #. Please suggest, I am not good in REGEX.

Thanks in advance.

Tags (2)
0 Karma
1 Solution

493669
Super Champion

try in props.conf:

[<your sourcetypeName>]
SEDCMD-Anon = s/mybal=\d+\.?\d+/mybal=xxxx/g s/availableBal=\d+\.?\d+/availableBal=xxxx/g

For reference https://docs.splunk.com/Documentation/Splunk/latest/Data/Anonymizedata#Anonymize_data_with_a_sed_scr...
Here SEDCMD will mask the data at index time extraction

View solution in original post

0 Karma

493669
Super Champion

try in props.conf:

[<your sourcetypeName>]
SEDCMD-Anon = s/mybal=\d+\.?\d+/mybal=xxxx/g s/availableBal=\d+\.?\d+/availableBal=xxxx/g

For reference https://docs.splunk.com/Documentation/Splunk/latest/Data/Anonymizedata#Anonymize_data_with_a_sed_scr...
Here SEDCMD will mask the data at index time extraction

0 Karma

LBG_Ankit
New Member

thank you it is working....:)

0 Karma

richgalloway
SplunkTrust
SplunkTrust

See the docs at http://docs.splunk.com/Documentation/Splunk/7.1.2/Data/Anonymizedata
A sed string like "s/(\d+.\d\d)/xxxx.xx/g" should work.

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

LBG_Ankit
New Member

Thanks Rich..it is working for me...:)

0 Karma

somesoni2
Revered Legend

Or s/([bB]al\=)(\d+|\d+\.\d+)/\1##.##.

0 Karma
Get Updates on the Splunk Community!

Stay Connected: Your Guide to May Tech Talks, Office Hours, and Webinars!

Take a look below to explore our upcoming Community Office Hours, Tech Talks, and Webinars this month. This ...

They're back! Join the SplunkTrust and MVP at .conf24

With our highly anticipated annual conference, .conf, comes the fez-wearers you can trust! The SplunkTrust, as ...

Enterprise Security Content Update (ESCU) | New Releases

Last month, the Splunk Threat Research Team had two releases of new security content via the Enterprise ...