- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- HP Trusted system
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
09-25-2006 03:24 AM
09-25-2006 03:24 AM
HP Trusted system
We are currently considering converting to a HP Trusted system, but one of the problems is that there is a web application with a login script which uses /usr/bin/chkpswd to check the login/passwd against the /etc/password file.
Is there any similar function in a Trusted system that can be used to authenticate users as it does not use /etc/passwd.
Thanks in advance
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-25-2006 03:29 AM
09-25-2006 03:29 AM
Re: HP Trusted system
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-25-2006 03:31 AM
09-25-2006 03:31 AM
Re: HP Trusted system
On my 11.11 systems, there is no such thing as chkpswd. Is this, perhaps, a home grown application? If so, you could probably re-write to use getprpwent or getpwent.
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-25-2006 08:47 PM
09-25-2006 08:47 PM
Re: HP Trusted system
The chlpswd script encodes the passwd to its hex value an compares the username and password against the passwd file. I inherited the systems from a previous administrator so obviously he developed chkpswd himself.I'll take a look at "getprpwent".
Thanks for the replies.
Tom
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-26-2006 12:23 AM
09-26-2006 12:23 AM
Re: HP Trusted system
If you meant that after convert to trusted system, /etc/passwd does not contain the encrypted passwords so the chkpswd will not work. Then you can have a look at /etc/shadow the first two columns are exactly the same as the the first two columns in /etc/passwd before convert to trusted system.
If that chkpswd script only check the login info against the first two columns in /etc/passwd you may modify the script to check /etc/shadow. However, the problem is that /etc/shadow can only be accessed by "root". Depends on which account will be used to trigger chkpswd, it may not work.
Regards,
Yang
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-09-2006 03:35 AM
10-09-2006 03:35 AM
Re: HP Trusted system
Thanks Yang that sounds like the best solution.
Thanks all for replies.