最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
详解C#使用AD(Active Directory)验证内网用户名密码
时间:2022-06-25 07:46:37 编辑:袖梨 来源:一聚教程网
详解C#使用AD(Active Directory)验证内网用户名密码
1. 连到内网,找到AD的domain地址
nslookup set types=all _ldap._tcp
2. 验证AD的函数
public bool ADLogin(string userName, string password)
{
// sample :
// LDAP://xxx.com
string domain = System.Configuration.ConfigurationManager.AppSettings["AD_Domain"];
try
{
DirectoryEntry entry = new DirectoryEntry(domain, userName, password);
object obj = entry.NativeObject;
DirectorySearcher search = new DirectorySearcher(entry);
search.Filter = string.Format("(SAMAccountName={0})", userName);
search.PropertiesToLoad.Add("cn");
SearchResult result = search.FindOne();
if (result == null)
return false;
}
catch (Exception ex)
{
log.Error(ex);
return false;
}
return true;
}
相关文章
- 《侠义OL》如何建立帮会 05-28
- 《梦幻西游》手游新手礼包兑换码怎么获得-新手礼包兑换码的获取途径 05-28
- 《侠义OL》龙魂熔炼一览 05-28
- 《梦幻西游》物理系门派推荐-狮驼岭凌波城大唐官府解析 05-28
- 《侠义OL》副本挑战不完全指南 05-28
- DLabel怎么设置照片打印 05-28