- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - OpenVMS
- >
- Creating system-generated passwords without using ...
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
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
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-03-2009 11:21 PM
тАО08-03-2009 11:21 PM
I'm preparing to automate the creation of user accounts on my OpenVMS 8.3 systems and would like to auto-generate the passwords for the new accounts.
I'm comfortable with the passwords generated by
$ SET PASSWORD /GENERATE
but that command is not well suited to the task at hand.
Is there a callable interface to the password generator, or a standalone program? I haven't been able to find one.
Thanks,
Jeremy Begg
Solved! Go to Solution.
- Tags:
- Password
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-04-2009 12:14 AM
тАО08-04-2009 12:14 AM
Re: Creating system-generated passwords without using SET PASSWORD
put the single line
$SET PASSWORD/generate=n
into a command-file (n: choose the wanted password length).
$Exit or EOF after the kine, so that set password does not get old/new password input and simply exits.
Execute the command-file with /output=tempfile or pipe it into a command-file, which reads the output (or sys$pipe), and takes the password(s).
An alternative could be another generate password program like gpw.c at
ftp://ftp.multicians.org/
You could modify it to put the generated password into a DCL symbol.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-04-2009 03:22 AM
тАО08-04-2009 03:22 AM
Re: Creating system-generated passwords without using SET PASSWORD
String::MkPasswd
( http://search.cpan.org/~cgrau/String-MkPasswd-0.02/lib/String/MkPasswd.pm )
and
Crypt::RandPasswd
( http://search.cpan.org/~jdporter/Crypt-RandPasswd-0.02/lib/Crypt/RandPasswd.pm )
\
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-04-2009 03:24 AM
тАО08-04-2009 03:24 AM
Re: Creating system-generated passwords without using SET PASSWORD
IIRC, some related underpinnings are available via the undocumented sys$forge_word system service.
I've posted full source code of the NEWUSER user creation tool (with an MIT-style license) at http://labs.hoffmanlabs.com/node/1260
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-04-2009 05:39 AM
тАО08-04-2009 05:39 AM
Solutionpipe write sys$output "Invalid" | set password/generate=8 | (read sys$pipe l ; read sys$pipe l ; define/job password &l)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-04-2009 05:47 AM
тАО08-04-2009 05:47 AM
Re: Creating system-generated passwords without using SET PASSWORD
%SET-F-PWDLOCKED, password is locked to prevent change
Craig A
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-04-2009 10:54 AM
тАО08-04-2009 10:54 AM
Re: Creating system-generated passwords without using SET PASSWORD
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-04-2009 03:54 PM
тАО08-04-2009 03:54 PM
Re: Creating system-generated passwords without using SET PASSWORD
Responding first to the last posts from Craig and Graham ...
The newly-created accounts won't have LOCKPWD set, so that's not going to be a problem. And in any case the password will be generated before the account is created.
Graham, thanks for pointing out the /GENERATE_PASSWORD qualifier, I didn't know about that one. I don't think it will work for me in this situation because it still requires me to select from a list -- which isn't as automated as I need. But I think it will be useful elsewhere!
I'll respond to the other suggestions and assign points when I've had a chance to look at them in more detail.
Thanks!
Jeremy Begg
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-04-2009 05:20 PM
тАО08-04-2009 05:20 PM
Re: Creating system-generated passwords without using SET PASSWORD
Once you have it then use $SETUAI to save it.
You've not said if the users will change their passwords when they first access the system but I'm guessing that's the case.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-04-2009 06:12 PM
тАО08-04-2009 06:12 PM
Re: Creating system-generated passwords without using SET PASSWORD
No, it's not too hard to write some code to spit out a string of characters -- but I'm trying to not reinvent the wheel, and I prefer that the generated password be pronouncable (more or less).
I should add that these accounts will be non-interactive, primarily for email services, and users won't be required to change them. (We will provide an option to allow users to change them if they wish.)
Thanks,
Jeremy Begg
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-04-2009 06:15 PM
тАО08-04-2009 06:15 PM
Re: Creating system-generated passwords without using SET PASSWORD
Big thanks to Joseph for the DCL one-liner, it does exactly what I need.
The GPW and Perl programs look like too much work to set up; GPW requires some dictionaries and the Perl code requires modules which we don't currently have installed.
I still need to look at Hoff's NEWUSER program.
Regards,
Jeremy Begg
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-04-2009 10:41 PM
тАО08-04-2009 10:41 PM
Re: Creating system-generated passwords without using SET PASSWORD
Just a note, it is not the newly created account, it is the creator/administrator/Your account which is issuing the set password, so this must not have LOCKPWD!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-05-2009 01:26 AM
тАО08-05-2009 01:26 AM
Re: Creating system-generated passwords without using SET PASSWORD
I did this at one site where there were lots of different type of underlygin servers: VMS, Unix, IBM, etc..
All with different username conventions and lengths.
The purpose of the exercise was to use each others email address as the key for populating which access they had to which systems.
So when they first logged in they were asked for their email address and then an accesss code was mailed to that address (only internal addresses were allowed). They then had to get the access code from the email and enter it.
Over a few weeks we were able to build up a picture of who had access to what accounts.
Dependong on what you are trying to achieve you could just generate, say, a 10 digit integer - using F$CVTIME() and use that as the password.
HTH
Craig A