Getting Data In

sedcmd for part of the string in props.conf

nathanpaul8
New Member

I need to anonymize ES credentials going to syslog
I need to redact only the password and leave the user name -u admin:passsword
like -u [^:]:[^\s]

Can I use sedcmd for this .

I see samples if value of admin is fixed. Need to leave that value.

Thanks in advance.

0 Karma
1 Solution

mayurr98
Super Champion

Try this run anywhere search

| makeresults 
| eval _raw="user name -u nathanpaul8:xczveffd" 
| rex field=_raw mode=sed "s/(-u\s[^\:]+\:)([^\s]+)/\1XXXXX/g"

In props.conf on indexer/heavy forwarder, you need to put

[<your_sourcetype>]
SEDCMD-password = s/(-u\s[^\:]+\:)([^\s]+)/\1XXXXX/g

let me know if this helps!

View solution in original post

nathanpaul8
New Member

Thanks to both.

0 Karma

mayurr98
Super Champion

Try this run anywhere search

| makeresults 
| eval _raw="user name -u nathanpaul8:xczveffd" 
| rex field=_raw mode=sed "s/(-u\s[^\:]+\:)([^\s]+)/\1XXXXX/g"

In props.conf on indexer/heavy forwarder, you need to put

[<your_sourcetype>]
SEDCMD-password = s/(-u\s[^\:]+\:)([^\s]+)/\1XXXXX/g

let me know if this helps!

493669
Super Champion

Try this:
in props.conf on Indexer/Heavy Forwarder

[sourcetype]
 SEDCMD-cc = s/(?i)(-u\s[^\:]+\:)\w+/\1xxxxxxx/g
0 Karma

nathanpaul8
New Member

Thanks to both. realized I am using another TRANSFORMER for the same source. . started managing splunk couple of months ago. Can I use both TRANSORMER and sedcmd?.

0 Karma

493669
Super Champion
0 Karma
Get Updates on the Splunk Community!

Extending Observability Content to Splunk Cloud

Watch Now!   In this Extending Observability Content to Splunk Cloud Tech Talk, you'll see how to leverage ...

More Control Over Your Monitoring Costs with Archived Metrics!

What if there was a way you could keep all the metrics data you need while saving on storage costs?This is now ...

New in Observability Cloud - Explicit Bucket Histograms

Splunk introduces native support for histograms as a metric data type within Observability Cloud with Explicit ...