- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- How to disallow user to reuse their old password
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-23-2002 04:57 PM
06-23-2002 04:57 PM
How to disallow user to reuse their old password at least for a week before they can reuse back their old password.
I'm aware that there is a feature called "Minimum Time Between Password Changes" but this is not my Risk Assessor wants.
Thanks in advance,
YC
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-23-2002 05:24 PM
06-23-2002 05:24 PM
Re: How to disallow user to reuse their old password
It should be mode 444
if you add the line
PASSWORD_HISTORY_DEPTH=8
Then the previous 8 passwords are remembered.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-23-2002 05:26 PM
06-23-2002 05:26 PM
Re: How to disallow user to reuse their old password
Here is some information from the Technical Knowledge Base. In conjunction with your trusted system, you need to set up a password history file which prevents a user from re-using their passwd for up to 10 times. This should fix your problem.
Cheers
Michael
Error in syslog. get_pwhist_config and default password history DocId: KBRC00000915 Updated: 2/9/00 10:36:50 AM
PROBLEM
Trusted system running 11.0. Started seeing the following message in
/var/adm/syslog/syslog.log:
Mar 2 08:17:26 husker syslog: get_pwhist_config: Can not open
/etc/default/security file. Default password history depth 1 is used.
What program runs this and what does it mean?
RESOLUTION
This is a relatively new feature on 11.0 systems. It is password history on a
trusted system.
Features
--------
Password history check of up to 10 passwords.
The system administrator can enable the password history feature to
discourage users from reusing previously used passwords. To enable the
password history feature, the system administrator should create a file
(or open the file if it already exists) named
/etc/default/security and append to it one line containing:
PASSWORD_HISTORY_DEPTH=number
The line contains three keywords: PASSWORD_HISTORY_DEPTH, =, and a
decimal number which is the desired depth for the password history check. If
the number is 2, the user's new password will be checked against two previously
used passwords. One is the current password, and the other one is the password
used before the current password. A configuration of password history depth of
2 prevents users from alternating between two passwords. The maximum
password history depth supported is 10 and the minimum password history
depth supported is 1. A depth configuration of more than 10 will be
treated as 10, and a depth configuration of less than 1 will be treated
as 1.
The password history depth configuration is on a system basis and is
supported in trusted system for users in files repository only. This
feature does not support the users in NIS or NISPLUS repositories. Once
the feature is enabled, all the users on the system are subject to the
same check. If the password history configuration file
/etc/default/security does not exist, or if the file exists but the
required line is missing, or if the line exists but any of the three
required keywords is missing, the password history check feature is
automatically disabled. When the feature is disabled, the password
history check depth is set to 1 and a password change is subject to all
of the other rules for a new password including a check with the current
password.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-23-2002 06:26 PM
06-23-2002 06:26 PM
Re: How to disallow user to reuse their old password
I tried with the suguestion by putting:
PASSWORD_HISTORY_DEPTH=1
in /etc/default/security file but it doestn't work.
With the above, I can reuse the password. Is there any patches need to apply ?
Rgds,
YC
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-23-2002 06:45 PM
06-23-2002 06:45 PM
Re: How to disallow user to reuse their old password
Yep looks like a problem, my test system has the same problem, but it should work. I'm going to look at some patches.
Michael
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-23-2002 06:46 PM
06-23-2002 06:46 PM
Re: How to disallow user to reuse their old password
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-23-2002 06:49 PM
06-23-2002 06:49 PM
SolutionYour system *MUST* be set as trusted.
user@systemx:/home/user 285 $ passwd
Changing password for user
Old password:
Last successful password change for user: Mon Jun 24 12:56:35 2002
Last unsuccessful password change for user: NEVER
Do you want (choose one letter only):
pronounceable passwords generated for you (g)
a string of letters generated (l) ?
to pick your passwords (p) ?
Enter choice here: p
New password:
You may not re-use a previously used password.
New password:
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-23-2002 06:58 PM
06-23-2002 06:58 PM
Re: How to disallow user to reuse their old password
It works only when the parameter is set top 2.
Thanks.
YC