Splunk Search

How to extract token from HTTP header?

miberecz
Loves-to-Learn

Hello Everyone,

I have a set of data with a lot of HTTP requests, where I want to extract only the tokens highlighted below. 

header=Authorization=Basic MmQyXXXXXXXXNDVjOTlkNTJlM2M0ZjA1MzVjYTI4ZGZkMzJmNTBlMjk=

 

 

2022-05-13 10:07:07,772 INFO  [io.undertow.request.dump] (default task-13778) 
----------------------------REQUEST---------------------------
               URI=/auth/realms/Public/protocol/openid-connect/token
 characterEncoding=null
     contentLength=29
       contentType=[application/x-www-form-urlencoded;charset=UTF-8]
            header=Accept=application/json, application/x-www-form-urlencoded
            header=Cache-Control=no-cache
            header=Pragma=no-cache
            header=User-Agent=Java/11.0.4
            header=Connection=keep-alive
            header=Authorization=Basic MmQyXXXXXNDVjOTlkNTJlM2M0ZjA1MzVjYTI4ZGZkMzJmNTBlMjk=
            header=Content-Type=application/x-www-form-urlencoded;charset=UTF-8
            header=Content-Length=29

 

 

I tried with the Field Extractor wizard, but with no luck. 

Can you please advise, how to achieve this? 

Labels (3)
0 Karma

ITWhisperer
SplunkTrust
SplunkTrust

Try something like this

| rex "header=Authorization=Basic\s(?<auth>\S*)"
0 Karma
Get Updates on the Splunk Community!

Tech Talk Recap | Mastering Threat Hunting

Mastering Threat HuntingDive into the world of threat hunting, exploring the key differences between ...

Observability for AI Applications: Troubleshooting Latency

If you’re working with proprietary company data, you’re probably going to have a locally hosted LLM or many ...

Splunk AI Assistant for SPL vs. ChatGPT: Which One is Better?

In the age of AI, every tool promises to make our lives easier. From summarizing content to writing code, ...