Security

authentication method in a query on splunk

rsaude
Path Finder

Hey everyone,

Is there a way to check for which kind of authentication method is being used by splunk in a log? (Splunk itself, SAML or LDAP)

Thanks in advanced

0 Karma
1 Solution

rsaude
Path Finder

With the app https://splunkbase.splunk.com/app/1866/
i was able to get one of the dashboards which displayed what i wanted,

Name: Users by authentication type
Code: | rest splunk_server=local /services/authentication/users | stats count by type

View solution in original post

0 Karma

rsaude
Path Finder

With the app https://splunkbase.splunk.com/app/1866/
i was able to get one of the dashboards which displayed what i wanted,

Name: Users by authentication type
Code: | rest splunk_server=local /services/authentication/users | stats count by type

0 Karma

rsaude
Path Finder

It's not 100% correct since it wasn't in a log but since i got it to work i'll call it a win.

0 Karma

harsmarvania57
Ultra Champion

As far as I know that in splunk logs those information are not available.

0 Karma

rsaude
Path Finder

i feard that, in any case if anyone knows a work around feel free to share please

0 Karma

harsmarvania57
Ultra Champion

Try below search (It is ugly because of join) but I think it will give you a result.

index=_audit host=<your host> action="login attempt"
| fields user, action, info, src 
| join type=left user
    [| rest /services/authentication/users splunk_server=local f=title f=type 
    | rename title as user 
    | fields user, type ]
| table user, type, action, info, src
0 Karma

rsaude
Path Finder

it did not work for me, there were users that appeared with no type (Probably because they no longer exist)

0 Karma

harsmarvania57
Ultra Champion

Yes, query which I have provided will give you type if that user exist in splunk, it it does not exist then it will give you blank.

0 Karma

rsaude
Path Finder

I managed to get it working for me, but thank you for your help anyway

0 Karma

harsmarvania57
Ultra Champion

Welcome... 🙂

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