Splunk Enterprise Security

Extract file hash from field

gyr1991
New Member

I have a field which contains various data, one of the data is the file hash. I would like to extract it to a field.

Tue Jul 15 09:32:03 CET 2019 app=testapp file_hash=aaaaaaaaaaaaaaaa1234567890123456 os=linux

I would like to extract the file_hash: 32 chars only letters and numbers.

Many thanks.

0 Karma

richgalloway
SplunkTrust
SplunkTrust

This should do it.

... | rex field=foo "file_hash=(?<file_hash>.{32})" | ...
---
If this reply helps you, Karma would be appreciated.
0 Karma

jutzasconsist
New Member

Hi Gyr1991,
I can provide following regex

file_hash\=(?<EXTRACTION1>\w+)\s+

or just for the letters and numbers:

file_hash\=(?<EXTRACTION1>[[:alnum:]]+)\s+

You can use one of them in the fields-extractor of splunk.

Hope this helps 🙂

Kind Regards,
Michael

0 Karma
Get Updates on the Splunk Community!

Build Scalable Security While Moving to Cloud - Guide From Clayton Homes

 Clayton Homes faced the increased challenge of strengthening their security posture as they went through ...

Mission Control | Explore the latest release of Splunk Mission Control (2.3)

We’re happy to announce the release of Mission Control 2.3 which includes several new and exciting features ...

Cloud Platform | Migrating your Splunk Cloud deployment to Python 3.7

Python 2.7, the last release of Python 2, reached End of Life back on January 1, 2020. As part of our larger ...