Operating System - Linux
1839486 Members
3064 Online
110146 Solutions
New Discussion

Web Password Security Authentication

 
SOLVED
Go to solution
Michael Williams_6
Trusted Contributor

Web Password Security Authentication

Please note this is a slightly different question to the one I asked about my NIS domain!

We have an FTP server which is soon to have a web-based wrapper to ease user management for our clients. With this in mind, I'd like for them to be able to create their own users at will via this web interface.

This will be done in Perl, does anyone know of a tool that will verify the security of a password to ensure we don't have any poor passwords??

Thanks for your help!
2 REPLIES 2
Steven E. Protter
Exalted Contributor
Solution

Re: Web Password Security Authentication

If its using the OS, and rules are in place the perl script should get and return answers from the OS.

Linux ships with the crack utility to guage password strength. If you choose a dicationary word, you get a response back. This response will be received from a properly written perl script and can be relayed to the user.

SEP
Steven E Protter
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
Michael Williams_6
Trusted Contributor

Re: Web Password Security Authentication

Would you look at that, I'd never even heard of cracklib!

Turns out there's a perl module called cracklib that is compiled using this as a source, and I've got all that's needed on the server already!!

That has to be the quickest answer I've ever had, an easy 10 points to you sir!