tanger has asked for the wisdom of the Perl Monks concerning the following question:
Are there any implications to what I'm trying to do? I'm not to strict with password rules too, the only one I have is for the members password to be 6 charcters or longer.$user_pass = $INPUT->param{'pass'}; if ($user_pass =~ /^[A-Za-z0-9]+$/ && length($user_pass) < 17) { $user_pass = $1; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Regex usernames and Passwords
by Joost (Canon) on Apr 16, 2005 at 20:44 UTC | |
|
Re: Regex usernames and Passwords
by graff (Chancellor) on Apr 17, 2005 at 04:16 UTC | |
|
Re: Regex usernames and Passwords
by polettix (Vicar) on Apr 17, 2005 at 18:23 UTC | |
|
Re: Regex usernames and Passwords
by gam3 (Curate) on Apr 16, 2005 at 20:42 UTC | |
|
Re: Regex usernames and Passwords
by Smylers (Pilgrim) on Apr 18, 2005 at 09:01 UTC | |
|
Re: Regex usernames and Passwords
by Anonymous Monk on Apr 18, 2005 at 10:00 UTC |