How do I access RACF user profile information?

481 Views Asked by At

How do I access information (specifically, password expiry date) from a Resource Access Control Facility user profile?

1

There are 1 best solutions below

0
On

The TSO command LISTUSER will give you the user's password date (in YY.DDD format) and the password interval (how many days old a password needs to be in order to be expired). You'd need to compare those with today's date.

There's a Redbook, https://www.redbooks.ibm.com/redbooks/pdfs/sg247610.pdf, that talks about how to do Java Security with z/OS and that goes into some detail about it. There looks like a class, com.ibm.os390.security.PlatformUser, but that only lets you change the password, or query if you're in a group.