|
View:
New views
12 Messages
—
Rating Filter:
Alert me
|
|
|
Ticket #588: Enforce at least 5 character minimum for passwordHi Andy, do you mind if I take and complete ticket #588. I found this regex, that forces a a input password to be at least 5 letter which must contain at least one Upper case letter, one lower case letter and one digit. Tim
Website: http://www.timalmdal.com ------------------------------------------------------------------------------ Come build with us! The BlackBerry(R) Developer Conference in SF, CA is the only developer event you need to attend this year. Jumpstart your developing skills, take BlackBerry mobile applications to market and stay ahead of the curve. Join us from November 9 - 12, 2009. Register now! http://p.sf.net/sfu/devconference __[ g a l l e r y - d e v e l ]_________________________ [ list info/archive --> http://gallery.sf.net/lists.php ] [ gallery info/FAQ/download --> http://gallery.sf.net ] |
|
|
Re: Ticket #588: Enforce at least 5 character minimum for passwordTim Almdal wrote:
> Hi Andy, do you mind if I take and complete ticket #588. I found this > regex, that forces a a input password to be at least 5 letter which must > contain at least one Upper case letter, one lower case letter and one digit. > > #(?=[-_a-zA-Z0-9]*?[A-Z])(?=[-_a-zA-Z0-9]*?[a-z])(?=[-_a-zA-Z0-9]*?[0-9])[-_a-zA-Z0-9]{5,}# Ye gods. Do we really have to do this? Websites that force me to use "strong" passwords drive me batty. -Bharat ------------------------------------------------------------------------------ Come build with us! The BlackBerry(R) Developer Conference in SF, CA is the only developer event you need to attend this year. Jumpstart your developing skills, take BlackBerry mobile applications to market and stay ahead of the curve. Join us from November 9 - 12, 2009. Register now! http://p.sf.net/sfu/devconference __[ g a l l e r y - d e v e l ]_________________________ [ list info/archive --> http://gallery.sf.net/lists.php ] [ gallery info/FAQ/download --> http://gallery.sf.net ] |
|
|
Re: Ticket #588: Enforce at least 5 character minimum for passwordI agree with Bharat - these rules are annoying. Minimum length maybe,
but the content requirements are *really* annoying. Jake On Oct 26, 2009, at 2:55 PM, Bharat Mediratta wrote: > Tim Almdal wrote: >> Hi Andy, do you mind if I take and complete ticket #588. I found this >> regex, that forces a a input password to be at least 5 letter which >> must >> contain at least one Upper case letter, one lower case letter and >> one digit. >> >> #(?=[-_a-zA-Z0-9]*?[A-Z])(?=[-_a-zA-Z0-9]*?[a-z])(?=[-_a-zA-Z0-9]*? >> [0-9])[-_a-zA-Z0-9]{5,}# > > Ye gods. Do we really have to do this? Websites that force me to use > "strong" passwords drive me batty. > > -Bharat > > ------------------------------------------------------------------------------ > Come build with us! The BlackBerry(R) Developer Conference in SF, CA > is the only developer event you need to attend this year. Jumpstart > your > developing skills, take BlackBerry mobile applications to market and > stay > ahead of the curve. Join us from November 9 - 12, 2009. Register now! > http://p.sf.net/sfu/devconference > __[ g a l l e r y - d e v e l ]_________________________ > > [ list info/archive --> http://gallery.sf.net/lists.php ] > [ gallery info/FAQ/download --> http://gallery.sf.net ] ------------------------------------------------------------------------------ Come build with us! The BlackBerry(R) Developer Conference in SF, CA is the only developer event you need to attend this year. Jumpstart your developing skills, take BlackBerry mobile applications to market and stay ahead of the curve. Join us from November 9 - 12, 2009. Register now! http://p.sf.net/sfu/devconference __[ g a l l e r y - d e v e l ]_________________________ [ list info/archive --> http://gallery.sf.net/lists.php ] [ gallery info/FAQ/download --> http://gallery.sf.net ] |
|
|
Re: Ticket #588: Enforce at least 5 character minimum for passwordDon't matter to me. You suggested minimum 5 chars, Andy's stretch goal was require some variety. If we are not going to do it, lets close it and get it off the list.
Tim
----- Original Message ----- From: Bharat Mediratta <bharat@...> Date: Monday, October 26, 2009 12:56 pm Subject: Re: [Gallery-devel] Ticket #588: Enforce at least 5 character minimum for password To: Tim Almdal <tnalmdal@...> Cc: "Staudacher, Andy" <andy.st@...>, "gallery-devel@..." <gallery-devel@...> > Tim Almdal wrote: > > Hi Andy, do you mind if I take and complete ticket #588. I > found this > > regex, that forces a a input password to be at least 5 letter > which must > > contain at least one Upper case letter, one lower case letter > and one digit. > > > > #(?=[-_a-zA-Z0-9]*?[A-Z])(?=[-_a-zA-Z0-9]*?[a-z])(?=[-_a-zA-Z0- > 9]*?[0-9])[-_a-zA-Z0-9]{5,}# > > Ye gods. Do we really have to do this? Websites that > force me to use > "strong" passwords drive me batty. > > -Bharat > Website: http://www.timalmdal.com ------------------------------------------------------------------------------ Come build with us! The BlackBerry(R) Developer Conference in SF, CA is the only developer event you need to attend this year. Jumpstart your developing skills, take BlackBerry mobile applications to market and stay ahead of the curve. Join us from November 9 - 12, 2009. Register now! http://p.sf.net/sfu/devconference __[ g a l l e r y - d e v e l ]_________________________ [ list info/archive --> http://gallery.sf.net/lists.php ] [ gallery info/FAQ/download --> http://gallery.sf.net ] |
|
|
Re: Ticket #588: Enforce at least 5 character minimum for passwordDo we already let users know if their password is weak, reasonable or
strong? I would not appose an *option* to allow enforcement of strong passwords for the admin, but forcing strong passwords would probably not appeal to most users. AIM: fryfrog WWW: http://www.fryfrog.com On Mon, Oct 26, 2009 at 1:22 PM, Tim Almdal <tnalmdal@...> wrote: > Don't matter to me. You suggested minimum 5 chars, Andy's stretch goal was > require some variety. If we are not going to do it, lets close it and get > it off the list. > Tim > > ----- Original Message ----- > From: Bharat Mediratta <bharat@...> > Date: Monday, October 26, 2009 12:56 pm > Subject: Re: [Gallery-devel] Ticket #588: Enforce at least 5 character > minimum for password > To: Tim Almdal <tnalmdal@...> > Cc: "Staudacher, Andy" <andy.st@...>, > "gallery-devel@..." <gallery-devel@...> > >> Tim Almdal wrote: >> > Hi Andy, do you mind if I take and complete ticket #588. I >> found this >> > regex, that forces a a input password to be at least 5 letter >> which must >> > contain at least one Upper case letter, one lower case letter >> and one digit. >> > >> > #(?=[-_a-zA-Z0-9]*?[A-Z])(?=[-_a-zA-Z0-9]*?[a-z])(?=[-_a-zA-Z0- >> 9]*?[0-9])[-_a-zA-Z0-9]{5,}# >> >> Ye gods. Do we really have to do this? Websites that >> force me to use >> "strong" passwords drive me batty. >> >> -Bharat >> > > Website: http://www.timalmdal.com > > > ------------------------------------------------------------------------------ > Come build with us! The BlackBerry(R) Developer Conference in SF, CA > is the only developer event you need to attend this year. Jumpstart your > developing skills, take BlackBerry mobile applications to market and stay > ahead of the curve. Join us from November 9 - 12, 2009. Register now! > http://p.sf.net/sfu/devconference > __[ g a l l e r y - d e v e l ]_________________________ > > [ list info/archive --> http://gallery.sf.net/lists.php ] > [ gallery info/FAQ/download --> http://gallery.sf.net ] > ------------------------------------------------------------------------------ Come build with us! The BlackBerry(R) Developer Conference in SF, CA is the only developer event you need to attend this year. Jumpstart your developing skills, take BlackBerry mobile applications to market and stay ahead of the curve. Join us from November 9 - 12, 2009. Register now! http://p.sf.net/sfu/devconference __[ g a l l e r y - d e v e l ]_________________________ [ list info/archive --> http://gallery.sf.net/lists.php ] [ gallery info/FAQ/download --> http://gallery.sf.net ] |
|
|
Re: Ticket #588: Enforce at least 5 character minimum for passwordOn Oct 26, 2009, at 1:55 PM, Bharat Mediratta <bharat@...>
wrote: > Tim Almdal wrote: >> Hi Andy, do you mind if I take and complete ticket #588. I found this >> regex, that forces a a input password to be at least 5 letter which >> must >> contain at least one Upper case letter, one lower case letter and >> one digit. >> >> #(?=[-_a-zA-Z0-9]*?[A-Z])(?=[-_a-zA-Z0-9]*?[a-z])(?=[-_a-zA-Z0-9]*? >> [0-9])[-_a-zA-Z0-9]{5,}# > > Ye gods. Do we really have to do this? Websites that force me to use > "strong" passwords drive me batty. > > -Bharat I think we agreed on just enforcing a minimum length, didn't we? - Chad > > --- > --- > --- > --------------------------------------------------------------------- > Come build with us! The BlackBerry(R) Developer Conference in SF, CA > is the only developer event you need to attend this year. Jumpstart > your > developing skills, take BlackBerry mobile applications to market and > stay > ahead of the curve. Join us from November 9 - 12, 2009. Register now! > http://p.sf.net/sfu/devconference > __[ g a l l e r y - d e v e l ]_________________________ > > [ list info/archive --> http://gallery.sf.net/lists.php ] > [ gallery info/FAQ/download --> http://gallery.sf.net ] ------------------------------------------------------------------------------ Come build with us! The BlackBerry(R) Developer Conference in SF, CA is the only developer event you need to attend this year. Jumpstart your developing skills, take BlackBerry mobile applications to market and stay ahead of the curve. Join us from November 9 - 12, 2009. Register now! http://p.sf.net/sfu/devconference __[ g a l l e r y - d e v e l ]_________________________ [ list info/archive --> http://gallery.sf.net/lists.php ] [ gallery info/FAQ/download --> http://gallery.sf.net ] |
|
|
Re: Ticket #588: Enforce at least 5 character minimum for password+1 for enforcing a minimum length of 5 chars only.
( As for password strength: If we ever do that, it should just be a recommendation, and not a requirement. I like the sign-up forms where there's an indicator next to the first password field to show the estimated strength of the password, and an indicator right next to the 2nd password field showing whether it matches the first one or not. All in JavaScript, without server round trips.
) - Andy
On Mon, Oct 26, 2009 at 10:53 AM, Chad Kieffer <chad@...> wrote:
------------------------------------------------------------------------------ Come build with us! The BlackBerry(R) Developer Conference in SF, CA is the only developer event you need to attend this year. Jumpstart your developing skills, take BlackBerry mobile applications to market and stay ahead of the curve. Join us from November 9 - 12, 2009. Register now! http://p.sf.net/sfu/devconference __[ g a l l e r y - d e v e l ]_________________________ [ list info/archive --> http://gallery.sf.net/lists.php ] [ gallery info/FAQ/download --> http://gallery.sf.net ] |
|
|
Re: Ticket #588: Enforce at least 5 character minimum for passwordi was planning on adding a estimated strength indicator (jquery implementation) but, having it match is as good thing as well
So min length is all i'll implement :-)
----- Original Message ----- From: Andy Staudacher <andy.st@...> Date: Monday, October 26, 2009 2:00 pm Subject: Re: [Gallery-devel] Ticket #588: Enforce at least 5 character minimum for password To: Chad Kieffer <chad@...> Cc: Bharat Mediratta <bharat@...>, Tim Almdal <tnalmdal@...>, "gallery-devel@..." <gallery-devel@...> > +1 for enforcing a minimum length of 5 chars only. > ( > As for password strength: If we ever do that, it should just be a > recommendation, and not a requirement. I like the sign-up forms where > there's an indicator next to the first password field to show > the estimated > strength of the password, and an indicator right next to the 2nd > passwordfield showing whether it matches the first one or not. > All in JavaScript, > without server round trips. > ) > > - Andy > > On Mon, Oct 26, 2009 at 10:53 AM, Chad Kieffer > <chad@...> wrote: > > > On Oct 26, 2009, at 1:55 PM, Bharat Mediratta > <bharat@...> wrote: > > > > Tim Almdal wrote: > >> > >>> Hi Andy, do you mind if I take and complete ticket #588. I > found this > >>> regex, that forces a a input password to be at least 5 > letter which must > >>> contain at least one Upper case letter, one lower case > letter and one > >>> digit. > >>> > >>> > >>> #(?=[-_a-zA-Z0-9]*?[A-Z])(?=[-_a-zA-Z0-9]*?[a-z])(?=[-_a-zA- > Z0-9]*?[0-9])[-_a-zA-Z0-9]{5,}# > >>> > >> > >> Ye gods. Do we really have to do this? Websites > that force me to use > >> "strong" passwords drive me batty. > >> > >> -Bharat > >> > > > > I think we agreed on just enforcing a minimum length, didn't we? > > > > - Chad > > > > > > > >> > >> -------------------------------------------------------------- > ---------------- > >> Come build with us! The BlackBerry(R) Developer Conference in > SF, CA > >> is the only developer event you need to attend this year. > Jumpstart your > >> developing skills, take BlackBerry mobile applications to > market and stay > >> ahead of the curve. Join us from November 9 - 12, 2009. > Register now! > >> http://p.sf.net/sfu/devconference > >> __[ g a l l e r y - d e v e l ]_________________________ > >> > >> [ list info/archive --> http://gallery.sf.net/lists.php ] > >> [ gallery info/FAQ/download --> http://gallery.sf.net ] > >> > > > Website: http://www.timalmdal.com ------------------------------------------------------------------------------ Come build with us! The BlackBerry(R) Developer Conference in SF, CA is the only developer event you need to attend this year. Jumpstart your developing skills, take BlackBerry mobile applications to market and stay ahead of the curve. Join us from November 9 - 12, 2009. Register now! http://p.sf.net/sfu/devconference __[ g a l l e r y - d e v e l ]_________________________ [ list info/archive --> http://gallery.sf.net/lists.php ] [ gallery info/FAQ/download --> http://gallery.sf.net ] |
|
|
Re: Ticket #588: Enforce at least 5 characterminimum for passwordPersonally I think even a minimum length is annoying. There are times when
you may (legitimately) not want any password at all. ----- Original Message ----- From: "Jake Conner" <jake@...> To: "Bharat Mediratta" <bharat@...> Cc: <gallery-devel@...> Sent: Monday, October 26, 2009 8:10 PM Subject: Re: [Gallery-devel] Ticket #588: Enforce at least 5 characterminimum for password >I agree with Bharat - these rules are annoying. Minimum length maybe, > but the content requirements are *really* annoying. > > Jake > > On Oct 26, 2009, at 2:55 PM, Bharat Mediratta wrote: > >> Tim Almdal wrote: >>> Hi Andy, do you mind if I take and complete ticket #588. I found this >>> regex, that forces a a input password to be at least 5 letter which >>> must >>> contain at least one Upper case letter, one lower case letter and >>> one digit. >>> >>> #(?=[-_a-zA-Z0-9]*?[A-Z])(?=[-_a-zA-Z0-9]*?[a-z])(?=[-_a-zA-Z0-9]*? >>> [0-9])[-_a-zA-Z0-9]{5,}# >> >> Ye gods. Do we really have to do this? Websites that force me to use >> "strong" passwords drive me batty. >> >> -Bharat >> >> ------------------------------------------------------------------------------ >> Come build with us! The BlackBerry(R) Developer Conference in SF, CA >> is the only developer event you need to attend this year. Jumpstart >> your >> developing skills, take BlackBerry mobile applications to market and >> stay >> ahead of the curve. Join us from November 9 - 12, 2009. Register now! >> http://p.sf.net/sfu/devconference >> __[ g a l l e r y - d e v e l ]_________________________ >> >> [ list info/archive --> http://gallery.sf.net/lists.php ] >> [ gallery info/FAQ/download --> http://gallery.sf.net ] > > > ------------------------------------------------------------------------------ > Come build with us! The BlackBerry(R) Developer Conference in SF, CA > is the only developer event you need to attend this year. Jumpstart your > developing skills, take BlackBerry mobile applications to market and stay > ahead of the curve. Join us from November 9 - 12, 2009. Register now! > http://p.sf.net/sfu/devconference > __[ g a l l e r y - d e v e l ]_________________________ > > [ list info/archive --> http://gallery.sf.net/lists.php ] > [ gallery info/FAQ/download --> http://gallery.sf.net ] > ------------------------------------------------------------------------------ Come build with us! The BlackBerry(R) Developer Conference in SF, CA is the only developer event you need to attend this year. Jumpstart your developing skills, take BlackBerry mobile applications to market and stay ahead of the curve. Join us from November 9 - 12, 2009. Register now! http://p.sf.net/sfu/devconference __[ g a l l e r y - d e v e l ]_________________________ [ list info/archive --> http://gallery.sf.net/lists.php ] [ gallery info/FAQ/download --> http://gallery.sf.net ] |
|
|
Re: Ticket #588: Enforce at least 5 characterminimum for passwordI thought we only decided to do this for the admin account when initially installing G3. Though that may be what we're already talking about or maybe that's how I recall it...
Kevin
On Mon, Oct 26, 2009 at 2:12 PM, Alec Myers <alec@...> wrote: Personally I think even a minimum length is annoying. There are times when ------------------------------------------------------------------------------ Come build with us! The BlackBerry(R) Developer Conference in SF, CA is the only developer event you need to attend this year. Jumpstart your developing skills, take BlackBerry mobile applications to market and stay ahead of the curve. Join us from November 9 - 12, 2009. Register now! http://p.sf.net/sfu/devconference __[ g a l l e r y - d e v e l ]_________________________ [ list info/archive --> http://gallery.sf.net/lists.php ] [ gallery info/FAQ/download --> http://gallery.sf.net ] |
|
|
Re: Ticket #588: Enforce at least 5 characterminimum for passwordOn Mon October 26 2009 17:12:59 Alec Myers wrote:
> Personally I think even a minimum length is annoying. There are times when > you may (legitimately) not want any password at all. +1 for no rule enforcement at all - password strength is the user's business. I do think strength-o-meter display is a mildly good idea but not worth a huge effort. ------------------------------------------------------------------------------ Come build with us! The BlackBerry(R) Developer Conference in SF, CA is the only developer event you need to attend this year. Jumpstart your developing skills, take BlackBerry mobile applications to market and stay ahead of the curve. Join us from November 9 - 12, 2009. Register now! http://p.sf.net/sfu/devconference __[ g a l l e r y - d e v e l ]_________________________ [ list info/archive --> http://gallery.sf.net/lists.php ] [ gallery info/FAQ/download --> http://gallery.sf.net ] |
|
|
Re: Ticket #588: Enforce at least 5 characterminimum for passwordPassword rules rules would be a nice contributed module :)
On Oct 26, 2009, at 3:18 PM, Kevin Nehls wrote: I thought we only decided to do this for the admin account when initially installing G3. Though that may be what we're already talking about or maybe that's how I recall it... ------------------------------------------------------------------------------ Come build with us! The BlackBerry(R) Developer Conference in SF, CA is the only developer event you need to attend this year. Jumpstart your developing skills, take BlackBerry mobile applications to market and stay ahead of the curve. Join us from November 9 - 12, 2009. Register now! http://p.sf.net/sfu/devconference __[ g a l l e r y - d e v e l ]_________________________ [ list info/archive --> http://gallery.sf.net/lists.php ] [ gallery info/FAQ/download --> http://gallery.sf.net ] |
| Free embeddable forum powered by Nabble | Forum Help |