You will have to implement your own SSLSocketFactory which can be set in JNDI using a system property or in the environment hashtable.
replace the afterPropertiesSet with the following code:
Code:
public void afterPropertiesSet() throws Exception {
super.afterPropertiesSet();
Hashtable env = new Hashtable();
//simple authentication needs username and password, external needs a keystore
// env.put(Context.SECURITY_AUTHENTICATION, "External");
env.put(Context.SECURITY_AUTHENTICATION, "simple");
env.put(Context.SECURITY_PRINCIPAL, super.userName);
env.put(Context.SECURITY_CREDENTIALS, super.password);
env.put(Context.INITIAL_CONTEXT_FACTORY, "com.sun.jndi.ldap.LdapCtxFactory");
//use one of them
//env.put("java.naming.ldap.factory.socket", "XXXX.ldap.security.DummySSLSocketFactory");
System.setProperty("java.naming.ldap.factory.socket", "XXXX.ldap.security.DummySSLSocketFactory");
//specify use of ssl
env.put(Context.SECURITY_PROTOCOL, "ssl");
//set the environment
super.setupAuthenticatedEnvironment(env);
// set the base environment again
super.setBaseEnvironmentProperties(env);
System.setProperty("javax.net.ssl.trustStore", trustStore);
System.setProperty("javax.net.ssl.keyStore", keyStore);
System.setProperty("javax.net.ssl.keyStorePassword", keyStorePassword);
// it is necessary to call super.afterPropertiesSet() again!!!
super.afterPropertiesSet();
}
I implemented a DummySSLSocketFactory which extends the javax.net.ssl.SSLSocketFactory class.
Code:
package XXXX.ldap.security;
import java.io.IOException;
import java.net.InetAddress;
import java.net.Socket;
import javax.net.SocketFactory;
import javax.net.ssl.SSLContext;
import javax.net.ssl.SSLSocketFactory;
import javax.net.ssl.TrustManager;
public class DummySSLSocketFactory
extends SSLSocketFactory {
private SSLSocketFactory factory;
public DummySSLSocketFactory() {
try {
SSLContext sslcontext = null;
// here you can instanciate your own ssl context with hardened security and your own trust managers which can check the extension
// SSLContext sslcontext = SSLSecurityInitializer.getContext();
if (sslcontext == null) {
sslcontext = SSLContext.getInstance("TLS");
sslcontext.init(null, // No KeyManager required
new TrustManager[] { new DummyTrustManager() },
new java.security.SecureRandom());
}
factory = (SSLSocketFactory) sslcontext.getSocketFactory();
} catch (Exception ex) {
ex.printStackTrace();
}
}
public static SocketFactory getDefault() {
return new DummySSLSocketFactory();
}
public Socket createSocket(Socket socket, String s, int i, boolean flag) throws IOException {
return factory.createSocket(socket, s, i, flag);
}
public Socket createSocket(InetAddress inaddr, int i, InetAddress inaddr1, int j) throws IOException {
return factory.createSocket(inaddr, i, inaddr1, j);
}
public Socket createSocket(InetAddress inaddr, int i) throws IOException {
return factory.createSocket(inaddr, i);
}
public Socket createSocket(String s, int i, InetAddress inaddr, int j) throws IOException {
return factory.createSocket(s, i, inaddr, j);
}
public Socket createSocket(String s, int i) throws IOException {
return factory.createSocket(s, i);
}
public String[] getDefaultCipherSuites() {
return factory.getSupportedCipherSuites();
}
public String[] getSupportedCipherSuites() {
return factory.getSupportedCipherSuites();
}
}
and here is the DummyTrustManager:
Code:
package XXXX.ldap.security;
import java.security.cert.X509Certificate;
import javax.net.ssl.X509TrustManager;
public class DummyTrustManager implements X509TrustManager {
public void checkClientTrusted(X509Certificate[] cert, String authType) {
return;
}
public void checkServerTrusted(X509Certificate[] cert, String authType) {
return;
}
public X509Certificate[] getAcceptedIssuers() {
return new X509Certificate[0];
}
}