problem with maxInvalidPasswordAttempts

problem with maxInvalidPasswordAttempts

am 20.01.2008 22:31:03 von Mich

Hi,

i use the login control for authentification (in local aspnetdb.mdf file).
The password is "hashed" and sent by mail to the member. Sofar no problem.
I put the maxInvalidPasswordAttempts="2" (so two attempts are allowed) and
passwordAttemptWindow="1" (attempts must occur in one minute).
Now, when i try to log with an invalid password several times, and then type
the right password, i still get the error message and i'm never be able to
login.

Here the whole members settings of web.config:




type="System.Web.Security.SqlMembershipProvider, System.Web,
Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
connectionStringName="LocalSqlServer"
enablePasswordRetrieval="false"
enablePasswordReset="true"
requiresQuestionAndAnswer="false"
applicationName="/"
requiresUniqueEmail="true"
passwordFormat="Hashed"
maxInvalidPasswordAttempts="2"
minRequiredPasswordLength="6"
minRequiredNonalphanumericCharacters="0"
passwordAttemptWindow="1"
passwordStrengthRegularExpression=""/>



Thanks for help
Mich

Re: problem with maxInvalidPasswordAttempts

am 21.01.2008 05:13:49 von Scott Roberts

When a user tries (and fails) to login to an account more than
"maxInvalidPasswordAttempts" times, the account gets locked. You must unlock
the account before it can be used again. I believe the column name is
"IsLockedOut" and it's in the "aspnet_Membership" table.


"Mich" wrote in message
news:eK4iCv6WIHA.4476@TK2MSFTNGP06.phx.gbl...
> Hi,
>
> i use the login control for authentification (in local aspnetdb.mdf file).
> The password is "hashed" and sent by mail to the member. Sofar no problem.
> I put the maxInvalidPasswordAttempts="2" (so two attempts are allowed) and
> passwordAttemptWindow="1" (attempts must occur in one minute).
> Now, when i try to log with an invalid password several times, and then
> type the right password, i still get the error message and i'm never be
> able to login.
>
> Here the whole members settings of web.config:
>
>
>
>
> > type="System.Web.Security.SqlMembershipProvider, System.Web,
> Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
> connectionStringName="LocalSqlServer"
> enablePasswordRetrieval="false"
> enablePasswordReset="true"
> requiresQuestionAndAnswer="false"
> applicationName="/"
> requiresUniqueEmail="true"
> passwordFormat="Hashed"
> maxInvalidPasswordAttempts="2"
> minRequiredPasswordLength="6"
> minRequiredNonalphanumericCharacters="0"
> passwordAttemptWindow="1"
> passwordStrengthRegularExpression=""/>
>

>

>
> Thanks for help
> Mich
>
>

Re: problem with maxInvalidPasswordAttempts

am 21.01.2008 09:28:11 von Mich

Thanks

"Scott Roberts" schreef in
bericht news:ePQIGQ%23WIHA.1204@TK2MSFTNGP03.phx.gbl...
> When a user tries (and fails) to login to an account more than
> "maxInvalidPasswordAttempts" times, the account gets locked. You must
> unlock the account before it can be used again. I believe the column name
> is "IsLockedOut" and it's in the "aspnet_Membership" table.
>
>
> "Mich" wrote in message
> news:eK4iCv6WIHA.4476@TK2MSFTNGP06.phx.gbl...
>> Hi,
>>
>> i use the login control for authentification (in local aspnetdb.mdf
>> file). The password is "hashed" and sent by mail to the member. Sofar no
>> problem.
>> I put the maxInvalidPasswordAttempts="2" (so two attempts are allowed)
>> and passwordAttemptWindow="1" (attempts must occur in one minute).
>> Now, when i try to log with an invalid password several times, and then
>> type the right password, i still get the error message and i'm never be
>> able to login.
>>
>> Here the whole members settings of web.config:
>>
>>
>>
>>
>> >> type="System.Web.Security.SqlMembershipProvider, System.Web,
>> Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
>> connectionStringName="LocalSqlServer"
>> enablePasswordRetrieval="false"
>> enablePasswordReset="true"
>> requiresQuestionAndAnswer="false"
>> applicationName="/"
>> requiresUniqueEmail="true"
>> passwordFormat="Hashed"
>> maxInvalidPasswordAttempts="2"
>> minRequiredPasswordLength="6"
>> minRequiredNonalphanumericCharacters="0"
>> passwordAttemptWindow="1"
>> passwordStrengthRegularExpression=""/>
>>

>>

>>
>> Thanks for help
>> Mich
>>
>>
>