How can I validate a username and password against Active Directory? I simply want to check if a username and password are correct.
|
|
If you work on .NET 3.5 or newer, you can use the
It's simple, it's reliable, it's 100% C# managed code on your end - what more can you ask for? :-) Read all about it here: |
|||||||||||||||||||||
|
|
We do this on our Intranet You have to use System.DirectoryServices; Here are the guts of the code
|
|||||||||||
|
|
Probably easiest way is to PInvoke LogonUser Win32 API.e.g. MSDN Reference here... Definitely want to use logon type
This creates a lightweight token only - perfect for AuthN checks. (other types can be used to build interactive sessions etc.) |
|||||||||||||||||
|
|
very simple solution using DirectoryServices:
the NativeObject access is required to detect a bad user/password |
|||||||||||||||||
|
|
Unfortunately there is no "simple" way to check a users credentials on AD. With every method presented so far, you may get a false-negative: A user's creds will be valid, however AD will return false under certain circumstances: User is required to Change Password at Next Logon. User's password has expired. ActiveDirectory will not allow you to use LDAP to determine if a password is invalid due to the fact that a user must change password or if their password has expired. To determine password change or password expired, you may call Win32:LogonUser(), and check the windows error code for the following 2 constants:
|
|||||||
|
|
A full .Net solution is to use the classes from the System.DirectoryServices namespace. They allow to query an AD server directly. Here is a small sample that would do this:
This code directly connects to the AD server, using the credentials provided. If the credentials are invalid, searcher.FindOne() will throw an exception. The ErrorCode is the one corresponding to the "invalid username/password" COM error. You don't need to run the code as an AD user. In fact, I succesfully use it to query informations on an AD server, from a client outside the domain ! |
|||||
|
|
Try this code (NOTE: Reported to not work on windows server 2000)
except you'll need to create your own custom exception for "LogonException" |
|||||||||||
|
|
www.c-sharpcorner.com has a nice article on how to do this. |
|||
|
|
|
If you are stuck with .NET 2.0 and managed code, here is another way that works whith local and domain accounts:
|
|||||||
|
|
Yet another .NET call to quickly authenticate LDAP credentials:
|
|||
|
|
|
Several solutions presented here lack the ability to differentiate between a wrong user / password, and a password that needs to be changed. That can be done in the following way:
If the users password is wrong, or the user doesn't exists, error will contain "8009030C: LdapErr: DSID-0C0904DC, comment: AcceptSecurityContext error, data 52e, v1db1", if the users password needs to be changed, it will contain "8009030C: LdapErr: DSID-0C0904DC, comment: AcceptSecurityContext error, data 773, v1db1" |
|||||||
|
protected by Community♦ May 17 '11 at 21:08
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.