Splunk Search

How to convert time from an inputlookup

cip1
Engager

Hi,
I need help in converting the time provided by a lookup.

| inputlookup AD_User_LDAP_list
| search cn=jon1
| fields cn, pwdLastSet

I am getting the information like this:

cn pwdLastSet
jon1 06:25.09 AM, Mon 07/15/2019

I tried running:
| eval start=strftime(pwdLastSet, %Y/%m%d)
but nothing has changed, I was getting the same results.

Basically, I am trying to find out when a user password will expire, based on the time it was last set.

0 Karma
1 Solution

diogofgm
SplunkTrust
SplunkTrust

Instead of trying to convert dates to calculate the expiration date you can, since you're getting data from AD LDAP, get the info from AD (field: accountExpires) already converted for you.

Still if you want to procede like this use

| eval start=strftime(strptime(pwdLastSet,"%I:%M.%S %p, %a %m/%d/%Y"),"%Y/%m/%d %H:%M:%S")
------------
Hope I was able to help you. If so, some karma would be appreciated.

View solution in original post

diogofgm
SplunkTrust
SplunkTrust

Instead of trying to convert dates to calculate the expiration date you can, since you're getting data from AD LDAP, get the info from AD (field: accountExpires) already converted for you.

Still if you want to procede like this use

| eval start=strftime(strptime(pwdLastSet,"%I:%M.%S %p, %a %m/%d/%Y"),"%Y/%m/%d %H:%M:%S")
------------
Hope I was able to help you. If so, some karma would be appreciated.

cip1
Engager

for some reason, the eval does not do anything different than before.
anyway, can you point me to where to get the date when an account password will expire? sorry for the question...pretty new to all this 😞

0 Karma

diogofgm
SplunkTrust
SplunkTrust

try the eval again. it was missing the hours. just corrected it

the AD field is called accountExpires. check with who created the lookup you're using to see if they can include more fields.

------------
Hope I was able to help you. If so, some karma would be appreciated.
0 Karma
Got questions? Get answers!

Join the Splunk Community Slack to learn, troubleshoot, and make connections with fellow Splunk practitioners in real time!

Meet up IRL or virtually!

Join Splunk User Groups to connect and learn in-person by region or remotely by topic or industry.

Get Updates on the Splunk Community!

From Data to Insight: Announcing the Winners of the Splunk Dashboard Contest

Hi Splunkers, First off, thank you to everyone who participated in our very first From Data to Insight: The ...

Splunk Developers: Construct Your Future at the .conf26 Builder Bar

Calling all Splunk architects, platform admins, and app developers: the site is open, and the blueprints are ...

Quick connection discovery mode for forwarders

When a Splunk forwarder loses connectivity to its indexers, it does not always reconnect immediately. In many ...