我是靠谱客的博主 拼搏羽毛,这篇文章主要介绍详解C#使用AD(Active Directory)验证内网用户名密码,现在分享给大家,希望可以做个参考。

详解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; 
    } 



如有疑问请留言或者到本站社区交流讨论,感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!

最后

以上就是拼搏羽毛最近收集整理的关于详解C#使用AD(Active Directory)验证内网用户名密码的全部内容,更多相关详解C#使用AD(Active内容请搜索靠谱客的其他文章。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(130)

评论列表共有 0 条评论

立即
投稿
返回
顶部