- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Root 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
03-09-2007 02:50 AM
03-09-2007 02:50 AM
Today one of the other admins was trying to his password, but she messed up and ended up changing root's password to null.
I just changed root's password, but i need tto find out how to enforce the passwords so that they are not null (at least for root)
I was reading on some previous post and i got this:
/usr/lbin/getprdef -m rstrpw Which results on:
System is not trusted.
I tried man getprdef, but no man page was found. Also there is not /etc/default/security. The only "security" that "find" found was "/etc/opt/dce/security", but it is an empty folder..
Any ideas on how can i enforce passwords not being null...? And what is getprdef..? Why does my system says it is not trusted..?
Thanks
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-09-2007 02:59 AM
03-09-2007 02:59 AM
SolutionYour system says it's not trusted because no one made it trusted by running tsconvert (or doing so in SAM). Your password hashes are stored in /etc/passwd (or possible /etc/shadow if you have Shadow Passwords installed).
Jeff Traigle
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-09-2007 03:12 AM
03-09-2007 03:12 AM
Re: Root password..?
What would the difference be between the trusted and not trusted...?
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-09-2007 03:16 AM
03-09-2007 03:16 AM
Re: Root password..?
"Trusting" a system makes your HP-UX C2-level security complaint. Trusting comes with lots of benefits, but at times it can be a pain too.
I have seen cases where the application stopped working because of the trusted system conversion.
If you convert your system to trusted, then the passwords will be removed from /etc/passwd and /tcb tree will be created where the passwords will be stored, along with other information. This will also enable some default security measures like account lockout after specific number of unsuccessful tries and stuff.
But if you want to enforce "not null" password policy without trusting the system then it may involve some scripting or C programming. You can create a wrapper and use /usr/lib/makekey to create encrypted passwords.
Sundar.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-09-2007 03:19 AM
03-09-2007 03:19 AM
Re: Root password..?
If it is a plain database server, most probably you will be fine.
There are number of differences between trusted and non-trusted systems. The most obvious ones you will probably notice is the account lockout and even root will be asked for the old password before the password can be changed.
This will mean you will have couple more steps to follow when you forget the password and reboot the system in single user mode !! :-)
Sundar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-09-2007 03:30 AM
03-09-2007 03:30 AM
Re: Root password..?
Thanks