Security

SSL certificate checker issue: How to see all SSL Certificates in the current search?

pchintha
Engager

Hi please help here

we are using below base search and we need to see all ssl certificates with days left in EST.

index=ssl_certs |rex field=_raw "[^'\n]*'expires=\"(?<expires>[^\\\'\"]+)"| stats c by host expires cert | eval time = strftime( strptime( expires , "%b %d %H:%M:%S %Y %Z" ), "%Y/%m/%d %H:%M:%S %Z")

pchintha_0-1644803789337.png

need exact query for this we tried a lot actually. we are using ssl_checker app for this.

Labels (2)
0 Karma

isoutamo
SplunkTrust
SplunkTrust

Based on your search response (which is not a raw data) this could helps you.

index=ssl_certs 
| rex "expires=\"(?<exp>[^\\\]+)\\\n"
| eval expTime = strptime(exp, "%b %d %H:%M:%S %Y %Z"), curTime = now()
| eval leftTime = tostring(expTime - curTime, "duration")
| eval daysLeft = mvindex(split(leftTime, "+"), 0)
| table exp expTime curTime left daysLeft

There are other ways to do it.

r. Ismo 

pchintha
Engager

showing no results

pchintha_0-1644838784730.png

 

0 Karma

isoutamo
SplunkTrust
SplunkTrust

Works with me with that app. Can you add that _raw data from your query so we can test it with your data?

e.g.

index=ssl_certs sourcetype=ssl_certs
| head 10
| table _time _raw

Then add that output inside editors </> (code block) so that it will not changed when you are posting it. 

0 Karma

pchintha
Engager

pchintha_0-1644831115506.png

 

Here is the sample events

 

0 Karma

isoutamo
SplunkTrust
SplunkTrust
Can you post some raw events in code box to helps you?
0 Karma

pchintha
Engager

This helps for me, from in this and expires is in GMT and the expTime is in EST guess so and we need all to know in EST only

pchintha_0-1644841268225.png

 

0 Karma
Get Updates on the Splunk Community!

Introducing the 2024 SplunkTrust!

Hello, Splunk Community! We are beyond thrilled to announce our newest group of SplunkTrust members!  The ...

Introducing the 2024 Splunk MVPs!

We are excited to announce the 2024 cohort of the Splunk MVP program. Splunk MVPs are passionate members of ...

Splunk Custom Visualizations App End of Life

The Splunk Custom Visualizations apps End of Life for SimpleXML will reach end of support on Dec 21, 2024, ...