C# Active Directory - Check username / password - Stack Overflow most recent 30 from stackoverflow.com2009-11-27T13:21:00Zhttp://stackoverflow.com/feeds/question/400872http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/400872/c-active-directory-check-username-password3C# Active Directory - Check username / passwordMichael G2008-12-30T17:11:43Z2009-09-07T09:36:28Z
<p>I'm using the following code on Windows Vista Ultimate SP1 to query our active directory server to check the user name and password of a user on a domain.</p>
<pre><code>public Object IsAuthenticated()
{
String domainAndUsername = strDomain + @"\" + strUser;
DirectoryEntry entry = new DirectoryEntry(_path, domainAndUsername, strPass);
SearchResult result;
try
{
//Bind to the native AdsObject to force authentication.
DirectorySearcher search = new DirectorySearcher(entry) { Filter = ("(SAMAccountName=" + strUser + ")") };
search.PropertiesToLoad.Add("givenName"); // First Name
search.PropertiesToLoad.Add("sn"); // Last Name
search.PropertiesToLoad.Add("cn"); // Last Name
result = search.FindOne();
if (null == result)
{
return null;
}
//Update the new path to the user in the directory.
_path = result.Path;
_filterAttribute = (String)result.Properties["cn"][0];
}
catch (Exception ex)
{
return new Exception("Error authenticating user. " + ex.Message);
}
return user;
}
</code></pre>
<p>the target is using .NET 3.5, and compiled with VS 2008 standard</p>
<p>I'm logged in under a domain account that is a domain admin where the application is running.</p>
<p>The code works perfectly on windows XP; but i get the following exception when running it on Vista: </p>
<pre><code>System.DirectoryServices.DirectoryServicesCOMException (0x8007052E): Logon failure: unknown user name or bad password.
at System.DirectoryServices.DirectoryEntry.Bind(Boolean throwIfFail)
at System.DirectoryServices.DirectoryEntry.Bind()
at System.DirectoryServices.DirectoryEntry.get_AdsObject()
at System.DirectoryServices.DirectorySearcher.FindAll(Boolean findMoreThanOne)
at System.DirectoryServices.DirectorySearcher.FindOne()
at Chain_Of_Custody.Classes.Authentication.LdapAuthentication.IsAuthenticated()
at System.DirectoryServices.DirectoryEntry.Bind(Boolean throwIfFail)
at System.DirectoryServices.DirectoryEntry.Bind()
at System.DirectoryServices.DirectoryEntry.get_AdsObject()
at System.DirectoryServices.DirectorySearcher.FindAll(Boolean findMoreThanOne)
at System.DirectoryServices.DirectorySearcher.FindOne()
at Chain_Of_Custody.Classes.Authentication.LdapAuthentication.IsAuthenticated()
</code></pre>
<p>I've tried changing the authentication types, I'm not sure what's going on.</p>
<p><hr /></p>
<p><b>See also</b>: <a href="http://stackoverflow.com/questions/290548/c-validate-a-username-and-password-against-active-directory">http://stackoverflow.com/questions/290548/c-validate-a-username-and-password-against-active-directory</a></p>
http://stackoverflow.com/questions/400872/c-active-directory-check-username-password/400917#4009170Answer by Steven Robbins for C# Active Directory - Check username / passwordSteven Robbins2008-12-30T17:26:13Z2008-12-30T17:26:13Z<p>Does binding to LDAP require elevated privs (UAC)? You could try running Visual Studio and/or the app as Administrator and see if that helps. If that's the problem you could always add a manifest to the application and set it to require elevation, that way it will prompt when a user runs it.</p>
<p>Not sure why it would require elevated privs, but it's worth a shot.</p>
http://stackoverflow.com/questions/400872/c-active-directory-check-username-password/403125#4031250Answer by Michael G for C# Active Directory - Check username / passwordMichael G2008-12-31T14:50:02Z2008-12-31T14:50:02Z<p>I figured it out anyhow If you pass in the domain with the username on vista it does not work like "domain\user" so just passing "user" instead seems to work okay - except you have to be on the same domain</p>
http://stackoverflow.com/questions/400872/c-active-directory-check-username-password/405254#4052546Answer by Steve Evans for C# Active Directory - Check username / passwordSteve Evans2009-01-01T18:20:35Z2009-01-01T18:20:35Z<p>If your using .net 3.5 use this code instead.</p>
<p>To authenticate a user:</p>
<pre><code>PrincipalContext adContext = new PrincipalContext(ContextType.Domain);
using (adContext)
{
return adContext.ValidateCredentials(UserName, Password);
}
</code></pre>
<p>If you need to find the user to R/W attributes to the object do this:</p>
<pre><code>PrincipalContext context = new PrincipalContext(ContextType.Domain);
UserPrincipal foundUser =
UserPrincipal.FindByIdentity(context, "jdoe");
</code></pre>
<p>This is using the System.DirectoryServices.AccountManagement namespace so you'll need to add it to your using statements.</p>
<p>If you need to convert a UserPrincipal object to a DirectoryEntry object to work with legacy code you can do this:</p>
<pre><code>DirectoryEntry userDE = (DirectoryEntry)foundUser.GetUnderlyingObject();
</code></pre>
http://stackoverflow.com/questions/400872/c-active-directory-check-username-password/1388461#13884610Answer by liuxiaobo for C# Active Directory - Check username / passwordliuxiaobo2009-09-07T09:36:28Z2009-09-07T09:36:28Z<p>i face the same problem,but i use the asp.net 2.0, so how to solve the problem?</p>