Splunk Enterprise

Trying to run a search in my environment to see what logs/events have credit cards in them. Any help? (PCI requirements)

Jewatson17
Path Finder

Need a query to find credit card numbers in events. Please help. I have run queries but they don't seem to be right.

This one is for Master Card, but I need one for OVERALL credit card numbers. this one doesnt even work btw

index=<index> | rex field=_raw "^4[0-9]{12}(?:[0-9]{3})?$(?<credit_card>)" | stats count by credit_card 
Tags (1)
0 Karma

MuS
Legend

Hi Jewatson17,

you can use this regex to match all possible credit cards:

| rex "(?<possible_credit_card_number>\d{12,19})"

According to https://en.wikipedia.org/wiki/Payment_card_number#Issuer_identification_number_(IIN) the IIN ranges have a possible length of 12 - 19 digits.

Hope this helps ...

cheers, MuS

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