Verify the username and password of the domain account

Source: Internet
Author: User

// Verify the required method.

Public static bool isauthenticated (string domain, string username, string PWD)
{
String strpath = "LDAP: // ou = people, Dc = rcomm, Dc = Local ";
String domainandusername = domain + @ "\" + username;
Directoryentry entry = new directoryentry (strpath, domainandusername, PWD );

Try
{// Bind to the native adsobject to force authentication.
Object OBJ = entry. nativeobject;

Directorysearcher search = new directorysearcher (entry );

Search. Filter = "(samaccountname =" + username + ")";
Search. propertiestoload. Add ("cn ");
Searchresult result = search. findone ();

If (null = Result)
{
Return false;
}

// Update the new path to the user in the directory.
Strpath = result. path;
// _ Filterattribute = (string) result. properties ["cn"] [0];
}
Catch (exception ex)
{
// Throw new exception ("error Authenticating user." + ex. Message );
Return false;
}

Return true;
}

// Call

If (loginlayer. isauthenticated ("Kefeng. rcomm. Local", "someguy", "admin "))
{
Response. Write ("Verification Successful! ");
}
Else
{
Response. Write ("Verification Failed! ");
}

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.