- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - OpenVMS
- >
- VMS Password Policy - checking to ensure at least ...
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
07-28-2005 09:04 AM
07-28-2005 09:04 AM
VMS Password Policy - checking to ensure at least 1 alpha and 1 numeric is used
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-28-2005 11:04 AM
07-28-2005 11:04 AM
Re: VMS Password Policy - checking to ensure at least 1 alpha and 1 numeric is used
Old password:
New password: (used 12345678)
Verification:
%SYSTEM-F-NONUMERIC, Password policy requires at least one numeric
%SYSTEM-F-PWDWEAK, password is too easy to guess; please choose another string
DEV> set pass
Old password:
New password: (used abcdefghi)
Verification:
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-28-2005 06:00 PM
07-28-2005 06:00 PM
Re: VMS Password Policy - checking to ensure at least 1 alpha and 1 numeric is used
I'm not sure which code you're looking at. Please post a reference (or just the code itself).
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-28-2005 06:45 PM
07-28-2005 06:45 PM
Re: VMS Password Policy - checking to ensure at least 1 alpha and 1 numeric is used
welcome to vms forum.
I can't get your real intention; please add some other information.
You can get help from any fellow of this forum, not only by John.
Antonio Vigliotti
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-28-2005 08:25 PM
07-28-2005 08:25 PM
Re: VMS Password Policy - checking to ensure at least 1 alpha and 1 numeric is used
If so, both replies are wrong.
New password: (used 12345678)
Verification:
%SYSTEM-F-NONUMERIC, Password policy requires at least one numeric
Looks pretty ridiculous reply to me in thois spot, it would have been right in the second attempt ("abcdefgh"). Here, it should say "requires at least one letter" here.
In both cases, I could argue for "requires at least one of _, $ or ." or whatever non-letter and non-digit character si allowed.
Just a thought ;-)
Willem
OpenVMS Developer & System Manager
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-28-2005 08:37 PM
07-28-2005 08:37 PM
Re: VMS Password Policy - checking to ensure at least 1 alpha and 1 numeric is used
I think this is in reference to:
http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=866372
Indeed, the 'find numeric' loop appears to fall thru into 'num_ok' on end off password:
untiln: SOBGTR R7,nloop ; step to next character
num_ok:
You can fix that by inserting the line:
"brw untila" after the num loop count down, before the num_ok label.
That branch will then take it to the end of the alpha loop, with r7 still set to fail.
Many alternatives possible.
Of course this question sounds to me like someone on a black diamond ski slope asking for directions to the beginners class meeting point.... :-)
hth,
Hein.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-29-2005 01:33 AM
07-29-2005 01:33 AM
Re: VMS Password Policy - checking to ensure at least 1 alpha and 1 numeric is used
Fair enough... serve me right for not testing it properly. On the other hand it was really only meant to be an example. I would have hoped anyone who wanted to use it would understand the code well enough to fix or modify it!
The attachment uses a simpler algorithm. This version steps through the password and counts characters according to type - numeric, alphabetic and "other". The test requires that the numeric and alphabetic counters be greater than zero, but this version makes it easier to change the policy (for example, at least 2 alphabetic).
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-29-2005 06:23 AM
07-29-2005 06:23 AM