CODEDIGEST
Home » Articles
Search
 

Technologies
 

Sponsored links
 

CodeDigest Navigation
 

Technology News
No News Feeds available at this time.
 

Community News
No News Feeds available at this time.
 
Enabling Password Reset functionality when using ActiveDirectoryMembershipProvider

By Rakki MuthuKumar
Posted On Apr 23,2008
Article Rating:
Be first to rate
this article.
No of Comments: 1
Category: ASP.Net
Print this article.

Enabling Password Reset functionality when using ActiveDirectoryMembershipProvider

If you want to use ActiveDirectoryMembershipProvider on your website to manage users specially the password reset functionality, you will also need to create few attributes in the active directory schema for the "USER" object. You can check this MSDN article to know more about this, but again, it doesn't list how to create the needed attributes, but it tells you what are all the attributes needed if you are considering "Password Reset" functionality.

Firstly, ActiveDirectoryMembershipProvider does not support retrieving the password, but you can reset the password by providing secret-question, and secret-answer. You may also need to create few more attributes in the active directory schema associated with this. Below are those attributes:

1.      Password Question - Unicode String

2.      Password Answer - Unicode String

3.      Failed Answer count - Integer

4.      Last time at which the user supplied an invalid answer - Large Integer/Interval

5.      Account locked out time - Large Integer/Interval

These are the 5 new attributes which you need to add in the active directory schema for the "USER" object. I will explain how to add new attributes and associate them to an existing object.

1.      You need to first install the schema snap-in by registering schmmgmt.dll (regsvr32 schmmgmt.dll)

2.      Now, open an MMC, and add "Active Directory Schema" snap-in

3.      Expand the Active Directory Schema, and right click on Attribute, and select "Create Attribute"

4.      Enter the common name, LDAP name, other fields for the attribute you are creating. For example, "PasswordQuestion" - this would be having its type as Unicode String. See the above list of attributes and its types appropriately. If Integer, enter minimum/maximum values too.

5.      For the OID, you need to check this MSDN article.




image

Now follow the above steps to create all the 5 attributes which are needed. After creating these attributes, we need to attach them to the "USER" object.

1.      In the same MMC, Expand "CLASSES" and select user object.

2.      Right click on user and select properties

3.      Go to its attributes tab, and click Add

4.      Select the attributes that you've created one by one and click on OK

 

That's it. Now, your user object would have all those attributes, and you can store values using any method you like. If you create an user using CreateUser wizard control, it would populate and store the values of the secret-question, answer automatically. ActiveDirectoryMembershipProvider would take care of storing, retrieving values of these attributes itself, you no need to program anything for them.

But, there would be some situation the users have been already created, but you need to attach these attributes to them. Follow the above methods to add attributes to the user object. And, now open the particular user's properties in ADSIEDIT.msc, and add values to them.

After following all the above steps, follow the other steps mentioned in this article to configure your web.config sections to map the attributes you've created in AD.

 

NOTE:
Password-answer is the only one attribute out of these 5 which would be stored in an encrypted format. <machinekey> section would be used for the encryption of this, if you create an user using the CreateUser wizard. But, if you have already created the user in the AD, and you want to just store the secret-question and password, you may want to check my next article where I'll explain how to use the same encryption method used by the MembershipProvider to store the secret-password in the active directory for the user.
Similar Articles
You can contribute to CodeDiget.Com:
Donate to CodeDigest.com
Article Feedback
Comments
Thanks
Thanks for sharing...