I am using Apache Directory Studio to search any LDAP users that have not modified their password since a specific date. I am using search and the (modifyTimestamp=) LDAP filter but not having much luck. Open to any other attributes that would work better. Can anyone help guide me on how to set the filter correctly for this type of search? Bonus if you know how to filter for modifications made within a date range.
Starting to look at this: Apache Dir Studio Search Help Page
Thanks in advance.
There is an operational attribute called
pwdChangedTime
, it exists in almost every LDAP, in Oracle OUD, ODSEE, OpenDS, OpenDJ, and ApacheDS..., beware you can't see this attributes in a classic LDAP search since its an operational attribute, you should append*+*
at the end of yourldapsearch
, example:or directly:
Finally you can use the filter to set a modify date:
*modifytimestamp>=20201002* *