- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- looking for a password generator for hpux...
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
05-15-2008 07:36 AM
05-15-2008 07:36 AM
$ pwgen -1
Bu4wefei
$ pwgen -1
Phohj8aM
$ pwgen -1
tae2WeiB
$ pwgen -1
ohL7Eg4m
thanks
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-15-2008 08:27 AM
05-15-2008 08:27 AM
Re: looking for a password generator for hpux...
So it should be open source, so any Web
search engine should be able to find it:
http://sourceforge.net/projects/pwgen/
http://sourceforge.net/project/showfiles.php?group_id=28391
Have you tried building it from the source?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-15-2008 08:36 AM
05-15-2008 08:36 AM
SolutionPerl makes this easy:
# ./pwgen
#!/usr/bin/perl
use strict;
use warnings;
my @chars = ( 'A'.. 'Z', 'a' ..'h', 0..9, qw(! @ $ % ^ & *) );
my $pass = join( '', @chars[ map { rand @chars } ( 1..8 ) ] );
print "$pass\n";
1;
...for example:
# ./pwgen
@7UGRIGc
# ./pwgen
L1!VS1FQ
# ./pwgen
FdP2V6KS
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-15-2008 08:40 AM
05-15-2008 08:40 AM
Re: looking for a password generator for hpux...
> ./pwgen
ENB*6M&@
> ./pwgen
$5%Y^BG2
> ./pwgen
T581%ZH%
> ./pwgen
@ESI9%8^
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-15-2008 08:43 AM
05-15-2008 08:43 AM
Re: looking for a password generator for hpux...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-15-2008 08:44 AM
05-15-2008 08:44 AM
Re: looking for a password generator for hpux...
It is very customizable with regards to password length, characters required, etc. The script is fairly well documented.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-15-2008 08:46 AM
05-15-2008 08:46 AM
Re: looking for a password generator for hpux...
> If I wanted to remove the special char...do I simply remove the qw(! @ $ % ^ & *)?
Yes:
my @chars = ( 'A'.. 'Z', 'a' ..'h', 0..9 );
...or whatever you want.
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-15-2008 08:48 AM
05-15-2008 08:48 AM
Re: looking for a password generator for hpux...
> ./pwgen
4HHE7TN7
> ./pwgen
BcUWhH86
> ./pwgen
Z0fDEAZT
> ./pwgen
IaCg8EEW
> ./pwgen
SEONKd17
> ./pwgen
SCeI4LXb
Thanks again
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-15-2008 08:54 AM
05-15-2008 08:54 AM