PHP8.1.21版本已发布
vue8.1.21版本已发布
jquery8.1.21版本已发布

C# 使用AD(Active Directory)验证内网用户名密码

黄舟
黄舟 原创
2017-02-28 11:19:51 2204浏览

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)验证内网用户名密码的内容,更多相关内容请关注PHP中文网(m.sbmmt.com)!


声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn核实处理。