Java JNDI没有返回组的外部安全主体成员。

huangapple 未分类评论45阅读模式
英文:

Java JNDI is not returning foreign security principal members of a group

问题

以下是翻译好的代码部分:

import java.util.ArrayList;
import java.util.Hashtable;
import java.util.Vector;
import javax.naming.Context;
import javax.naming.NameNotFoundException;
import javax.naming.NamingEnumeration;
import javax.naming.NamingException;
import javax.naming.directory.Attribute;
import javax.naming.directory.Attributes;
import javax.naming.directory.SearchControls;
import javax.naming.directory.SearchResult;
import javax.naming.ldap.InitialLdapContext;
import javax.naming.ldap.LdapContext;

public class GroupMembers
{
    public static void main(String[] args)
    {
        ArrayList<String> members = new ArrayList<String>();

        String ldapUsername = "cn=accountname,OU=Service Accounts,OU=JKL,DC=GHI,DC=DEF,DC=ABC,DC=COM";
        String ldapPassword = "password";
        String servername = "ldaps://GHI.DEF.ABC.COM";
        String searchbase = "DC=GHI,DC=DEF,DC=ABC,DC=COM";
        String searchfilter = "(&(objectCategory=group)(sAMAccountName=groupname))";

        Hashtable<String, Object> env = new Hashtable<String, Object>();
        env.put(Context.SECURITY_AUTHENTICATION, "simple");
        env.put(Context.SECURITY_PRINCIPAL, ldapUsername);
        env.put(Context.SECURITY_CREDENTIALS, ldapPassword);
        env.put(Context.INITIAL_CONTEXT_FACTORY, "com.sun.jndi.ldap.LdapCtxFactory");
        env.put(Context.PROVIDER_URL, servername);

        LdapContext ctx;
        try {
            ctx = new InitialLdapContext(env, null);
            NamingEnumeration<?> results = null;
            try {
                SearchControls controls = new SearchControls();
                controls.setSearchScope(SearchControls.SUBTREE_SCOPE);
                results = ctx.search(searchbase, searchfilter, controls);

                while (results.hasMore()) {
                    SearchResult searchResult = (SearchResult) results.next();
                    Attributes attributes = searchResult.getAttributes();
                    Attribute attr = attributes.get("member");

                    for (int i=0; i<attr.size(); i++) {
                        members.add((String) attr.get(i));
                    }
                }
            } catch (NameNotFoundException e) {
                e.printStackTrace();
            } catch (NamingException e) {
                throw new RuntimeException(e);
            } finally {
                if (results != null) {
                    try {
                        results.close();
                    } catch (Exception e) {
                        e.printStackTrace();
                    }
                }
                if (ctx != null) {
                    try {
                        ctx.close();
                    } catch (Exception e) {
                        e.printStackTrace();
                    }
                }
            }
            // Loop through the members and print them out
            for (int i = 0; i < members.size(); i++) {
                System.out.println(members.get(i));
            }
        } catch (NamingException e1) {
            e1.printStackTrace();
        }
    }
}
英文:

I have the following Java code which is able to get members of a AD group. However, when a member is from a different trust domain and thus a foreign security principal, the code does not get that member. I wonder if someone has any prior experience with that and could provide some advice. Thanks a lot in advance!

<pre>

import java.util.ArrayList;
import java.util.Hashtable;
import java.util.Vector;

import javax.naming.Context;
import javax.naming.NameNotFoundException;
import javax.naming.NamingEnumeration;
import javax.naming.NamingException;
import javax.naming.directory.Attribute;
import javax.naming.directory.Attributes;
import javax.naming.directory.SearchControls;
import javax.naming.directory.SearchResult;
import javax.naming.ldap.InitialLdapContext;
import javax.naming.ldap.LdapContext;

public class GroupMembers
{
	public static void main(String[] args)
	{
		ArrayList&lt;String&gt; members = new ArrayList&lt;String&gt;();

		String ldapUsername = &quot;cn=accountname,OU=Service Accounts,OU=JKL,DC=GHI,DC=DEF,DC=ABC,DC=COM&quot;;
		String ldapPassword = &quot;password&quot;;
		String servername = &quot;ldaps://GHI.DEF.ABC.COM&quot;;
		String searchbase = &quot;DC=GHI,DC=DEF,DC=ABC,DC=COM&quot;;
		String searchfilter = &quot;(&amp;(objectCategory=group)(sAMAccountName=groupname))&quot;;

		Hashtable&lt;String, Object&gt; env = new Hashtable&lt;String, Object&gt;();
		env.put(Context.SECURITY_AUTHENTICATION, &quot;simple&quot;);
		env.put(Context.SECURITY_PRINCIPAL, ldapUsername);
		env.put(Context.SECURITY_CREDENTIALS, ldapPassword);
		env.put(Context.INITIAL_CONTEXT_FACTORY, &quot;com.sun.jndi.ldap.LdapCtxFactory&quot;);
		env.put(Context.PROVIDER_URL, servername);

		LdapContext ctx;
		try {
			ctx = new InitialLdapContext(env, null);
			NamingEnumeration&lt;?&gt; results = null;
			try {
				SearchControls controls = new SearchControls();
				controls.setSearchScope(SearchControls.SUBTREE_SCOPE);
				results = ctx.search(searchbase, searchfilter, controls);

				while (results.hasMore()) {
					SearchResult searchResult = (SearchResult) results.next();
					Attributes attributes = searchResult.getAttributes();
					Attribute attr = attributes.get(&quot;member&quot;);
	 
					for (int i=0;i&lt;attr.size();i++) {
						members.add((String) attr.get(i));
					}
				}
			} catch (NameNotFoundException e) {
				e.printStackTrace();
			} catch (NamingException e) {
				throw new RuntimeException(e);
			} finally {
				if (results != null) {
					try {
						results.close();
					} catch (Exception e) {
						e.printStackTrace();
				   }
				}
				if (ctx != null) {
					try {
						ctx.close();
					} catch (Exception e) {
						e.printStackTrace();
					}
				}
			}
			// Loop through the memebers of the and print them out
			for (int i = 0; i &lt; members.size(); i++) {
				System.out.println(members.get(i));
			}
		} catch (NamingException e1) {
			e1.printStackTrace();
		}
	}
}

<pre>

huangapple
  • 本文由 发表于 2020年4月5日 12:30:06
  • 转载请务必保留本文链接:https://java.coder-hub.com/61038087.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定