- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Password Lengths
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
08-19-2003 10:11 AM
08-19-2003 10:11 AM
I am trying to find out how to see what the max password length is set to on a trusted HPUX 11 system. I see that it can be up to 40 characters however, when we try to connect to the HP with client software, it will not see more than the first 8 characters.
Thanks!
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-19-2003 10:14 AM
08-19-2003 10:14 AM
Re: Password Lengths
This question has come up many times in the forums and the answer is always the same: you are best off if you stick to an 8 character password. Exceeding 8 characters is possible, but the results are generally unfavorable.
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-19-2003 10:28 AM - last edited on 03-11-2025 11:08 PM by Sunitha_Mod
08-19-2003 10:28 AM - last edited on 03-11-2025 11:08 PM by Sunitha_Mod
Re: Password Lengths
Karen,
Here's an example:http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0xdd20aaf9f7b2d711abdc0090277a778c,00.html
Pete
[Moderator edit: The above link is no longer valid. ]
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-20-2003 01:01 AM
08-20-2003 01:01 AM
SolutionAs you can see in the thread Pete pointed to it is possible to have far longer passwords on a trusted system than the 8 character limit for non-trusted.
If you attempt to logon from the console you should have no problem with longer passwords (well, other than remembering them!) However, it sounds like your client software isn't suited for use with a trusted system. If it only allows you to type in 8 chars it suggests that it isn't even aware of the trusted system's abilities.
Is your client software a terminal or screen emulator, or is it a separate application? I'd expect an emulator to present a prompt for the password which it sends in return, whereas an application might authenticate itself - in which case it needs to know the difference between the trusted and non-trusted system calls required for authentication.
To summarise: ask the client software vendor if it supports connecting to a trusted system.
regards,
Darren
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-20-2003 01:06 AM
08-20-2003 01:06 AM
Re: Password Lengths
MIN_PASSWORD_LENGTH = 8
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-20-2003 05:36 AM
08-20-2003 05:36 AM
Re: Password Lengths
Thanks again!
Karen
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-20-2003 05:46 AM
08-20-2003 05:46 AM
Re: Password Lengths
If you can pick out the section of VB code that is responsible for the initial connection and authenticating, please post it - I may be able to help.
regards,
Darren.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-20-2003 06:15 AM
08-20-2003 06:15 AM
Re: Password Lengths
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-20-2003 06:27 PM
08-20-2003 06:27 PM
Re: Password Lengths
Here is what I got from the engineer. He says it's a stripped down version of the code but this is basically what it does. He also put his own comments below the code. Thanks again!:
if((shadow_fields = getspnam(mypwent->pw_name)) != NULL)
checkpass = shadow_fields->sp_pwdp;
if (checkpass == NULL)
checkpass = mypwent->pw_passwd;
cryptedpass = crypt(passwdtext, checkpass);
if (strcmp(cryptedpass, checkpass))
{
return(80011);
}
Basically we are using the standard api calls we use for hp systems,
this code has been working since HPUX went to shadow files. We do not
truncate the password before getting here and all the access to the
system goes thou this one piece of code. If they need us to use new or
extended api calls to run on trusted system then we would recommend
using DS 7.0 when it comes out and configuring the security PAM option
for the product this can be made to use standard UNIX login that should,
if HP have done it right, handle the trusted and untrusted cases without
us having to write specific code for trusted systems.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-21-2003 08:42 AM
08-21-2003 08:42 AM
Re: Password Lengths
Thanks!
Karen
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-21-2003 09:04 AM
08-21-2003 09:04 AM
Re: Password Lengths
yes - bigcrypt is used on trusted systems. Have you previously only had people using short passwords, as you mentioned that this had been working since shadow passwords came out?
regards,
Darren.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-21-2003 10:21 AM
08-21-2003 10:21 AM
Re: Password Lengths
Well, the engineer says that but I have been supporting this product for ages and I know this has been an issue for quite some time. We just must not have many customers that use more than 8 characters. No one, up until the other day, really pushed the issue. Thank you very much for all your time!
Regards,
Karen