Operating System - OpenVMS
1748122 Members
3363 Online
108758 Solutions
New Discussion юеВ

Re: How to check the password expired.

 
SOLVED
Go to solution
Muhammad Luthfi
Occasional Contributor

How to check the password expired.

Hi,
To audit purpose , how to check the
password expired in OpenVMS, cause the audit need the password is expire is 60 days.

Thanks
Luthfi
8 REPLIES 8
Volker Halle
Honored Contributor

Re: How to check the password expired.

Luthfi,

if you produce a full SYSUAF listing, you can check for each user account:

Pwdlifetime: 90 00:00 Pwdchange: 11-AUG-2006 11:11

If the password change date plus the password lifetime delta time is greater then now, the password is expired.

Volker.
Wim Van den Wyngaert
Honored Contributor

Re: How to check the password expired.

If you are getting harased by SOX or something comparable, this may help (my 3rd answer). A procedure to find several violations.

http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=1049669

Wim
Wim
Chinraj Rajasekaran
Frequent Advisor

Re: How to check the password expired.

Hi,

To check the vms account password exiration date and password lifttime..etc use these commands for a specific account.

$ set defa sys$system
$ mc authorize
$ show

the fields related to password for vms user account is available like...

Expiration:
Pwdminimum:
Login Fails:
Pwdlifetime:
Pwdchange:

if you want to take complete report on all users...

1. Take a listing of SYSUAF file

UAF> LIST * /full
SYSUAF.LIS is created by this command results with full reports for all users in ascending sequence by user name.

2. Generate the report by searching the specific strings you needed.

there is no specific function available within vms user management system to generate such report directly.



regards
Raj
Muhammad Luthfi
Occasional Contributor

Re: How to check the password expired.

Hi All,

Thanks for you advice, btw how to set/what command I can use to set the password expired is 60 days and password lifetime.

Regards,
Luthfi


Karl Rohwedder
Honored Contributor
Solution

Re: How to check the password expired.

$ MCR AUTHORIZE
UAF> HELP MODIFY /PWDLIFETIME

is your uncle.

regards Kalle
Jan van den Ende
Honored Contributor

Re: How to check the password expired.

Luthfi,

... and if you want/need to set it as a general policy, just
MCR AUTHORIZE MOD * /
will modify ALL records.
For /PWDLIFE, specify 60 DAYS as 60- (include the minus-sign). Yo would not be the first to specify just 60, and find out that 60 HOURS is a quite short time!

hth,

Proost.

Have one on me.

jpe
Don't rust yours pelled jacker to fine doll missed aches.
Petr Spisek
Regular Advisor

Re: How to check the password expired.

Hi,
try use to similar DCL script (attached). You'll need system privileges.
Petr
Muhammad Luthfi
Occasional Contributor

Re: How to check the password expired.

Thanks all Now my problem has been solved.