Gossamer Forum
Home : Products : Others : Gossamer Community :

Re: [tora] Password strength

Quote Reply
Re: [tora] Password strength In reply to
Hi,

The only code I can find is in /Community/User.pm:

Code:
sub cuser_pw_validate_error {
# -------------------------------------------------------------------
my $password = shift;
$password =~ /^\s*$/ and return 'SIGNUP_PASSWORD_MISSING';
length($password) < 4 and return 'SIGNUP_PASSWORD_TOOSHORT';
return '';
}
That basically just checks to see if the password is long enough (4 chars), but I can't see it doing any more than that :)

Cheers

Andy (mod)
andy@ultranerds.co.uk
Want to give me something back for my help? Please see my Amazon Wish List
GLinks ULTRA Package | GLinks ULTRA Package PRO
Links SQL Plugins | Website Design and SEO | UltraNerds | ULTRAGLobals Plugin | Pre-Made Template Sets | FREE GLinks Plugins!
Subject Author Views Date
Thread Password strength tora 11633 Apr 28, 2018, 3:51 AM
Thread Re: [tora] Password strength
Andy 11461 Apr 30, 2018, 1:57 AM
Thread Re: [Andy] Password strength
tora 11439 Apr 30, 2018, 4:52 AM
Thread Re: [tora] Password strength
Andy 11435 Apr 30, 2018, 5:29 AM
Thread Re: [Andy] Password strength
tora 11438 Apr 30, 2018, 6:24 AM
Thread Re: [tora] Password strength
tora 11441 May 2, 2018, 1:34 AM
Post Re: [tora] Password strength
Andy 11402 May 2, 2018, 7:17 AM