I am doing a https post and I'm getting an exception of ssl exception Not trusted server certificate. If i do normal http it is working perfectly fine. Do I have to accept the server certificate somehow?

link|improve this question

48% accept rate
Can i get some sample implementation of the same – Sam97305421562 Jun 15 '09 at 11:53
feedback

8 Answers

up vote 18 down vote accepted

I'm making a guess, but if you want an actual handshake to occur, you have to let android know of your certificate. If you want to just accept no matter what, then use this pseudo-code to get what you need with the Apache HTTP Client:

SchemeRegistry schemeRegistry = new SchemeRegistry ();

schemeRegistry.register (new Scheme ("http",
    PlainSocketFactory.getSocketFactory (), 80));
schemeRegistry.register (new Scheme ("https",
    new CustomSSLSocketFactory (), 443));

ThreadSafeClientConnManager cm = new ThreadSafeClientConnManager (
    params, schemeRegistry);


return new DefaultHttpClient (cm, params);

CustomSSLSocketFactory:

public class CustomSSLSocketFactory extends org.apache.http.conn.ssl.SSLSocketFactory
{
private SSLSocketFactory FACTORY = HttpsURLConnection.getDefaultSSLSocketFactory ();

public CustomSSLSocketFactory ()
    {
    super(null);
    try
        {
        SSLContext context = SSLContext.getInstance ("TLS");
        TrustManager[] tm = new TrustManager[] { new FullX509TrustManager () };
        context.init (null, tm, new SecureRandom ());

        FACTORY = context.getSocketFactory ();
        }
    catch (Exception e)
        {
        e.printStackTrace();
        }
    }

public Socket createSocket() throws IOException
{
    return FACTORY.createSocket();
}

 // TODO: add other methods like createSocket() and getDefaultCipherSuites().
 // Hint: they all just make a call to member FACTORY 
}

FullX509TrustManager is a class that implements javax.net.ssl.X509TrustManager, yet none of the methods actually perform any work, get a sample here.

Good Luck!

link|improve this answer
Why is there the FACTORY variable?? – Codevalley Sep 27 '10 at 12:18
Clarified in post. You need FACTORY for the other override methods a SocketFactory needs to create a socket. – Nate Sep 27 '10 at 17:16
return FACTORY.createSocket(); is having problem. The created socket is giving null Pointer exception on execute(). Also, I noticed, there are 2 SocketFactory classes. 1. org.apache.http.conn.ssl.SSLSocketFactory and 2. javax.net.ssl.SSLSocketFactory – Codevalley Sep 28 '10 at 7:42
2  
Hi Nate, this looks like something helpful for my situation. But, I'm having some issues with making the CustomSSLSocketFactory. What class is it supposed to extend? Or what interface is is it supposed to implement? I've been experimenting with: javax.net.SocketFactory, javax.net.ssl.SSLSocketFactory, org.apache.http.conn.scheme.SocketFactory, all of which force implementation of other methods... So, in general, what are the namespaces of the classes used in your code? Thank you. :) – Cephron Mar 18 '11 at 18:23
2  
Does not work for me, gives me same Not trusted server certificate error. – Omar Rehman Jun 8 '11 at 12:57
show 3 more comments
feedback

This is what I am doing. It simply doesn't check the certificate anymore.

// always verify the host - dont check for certificate
final static HostnameVerifier DO_NOT_VERIFY = new HostnameVerifier() {
	public boolean verify(String hostname, SSLSession session) {
		return true;
	}
};

/**
 * Trust every server - dont check for any certificate
 */
private static void trustAllHosts() {
	// Create a trust manager that does not validate certificate chains
	TrustManager[] trustAllCerts = new TrustManager[] { new X509TrustManager() {
		public java.security.cert.X509Certificate[] getAcceptedIssuers() {
			return new java.security.cert.X509Certificate[] {};
		}

		public void checkClientTrusted(X509Certificate[] chain,
				String authType) throws CertificateException {
		}

		public void checkServerTrusted(X509Certificate[] chain,
				String authType) throws CertificateException {
		}
	} };

	// Install the all-trusting trust manager
	try {
		SSLContext sc = SSLContext.getInstance("TLS");
		sc.init(null, trustAllCerts, new java.security.SecureRandom());
		HttpsURLConnection
				.setDefaultSSLSocketFactory(sc.getSocketFactory());
	} catch (Exception e) {
		e.printStackTrace();
	}
}

and

	HttpURLConnection http = null;

	if (url.getProtocol().toLowerCase().equals("https")) {
	    trustAllHosts();
		HttpsURLConnection https = (HttpsURLConnection) url.openConnection();
		https.setHostnameVerifier(DO_NOT_VERIFY);
		http = https;
	} else {
		http = (HttpURLConnection) url.openConnection();
	}
link|improve this answer
hey thnx .... :-) – Sam97305421562 Jun 16 '09 at 12:53
This looks good! I'm using WebView, however, and only need to connect to a https server for test purposes. (The client can't provision one with a matching FQDN, nor can they test on http.) Is there any way to tackle this when using WebView? Do I just drop this code in the Activity where the WebView is and "it just works?" (Suspecting not … ??) – Joe D'Andrea Sep 2 '10 at 21:13
i'm trying to use that solution step by step and I'm getting such exception: 07-25 12:35:25.941: WARN/System.err(24383): java.lang.ClassCastException: org.apache.harmony.luni.internal.net.www.protocol.http.HttpURLConnectionImpl in place where I'm trying to open connection... any idea why?? – Robert Jul 25 '11 at 10:39
Hey I did as suggested by you but I am getting the exception as javax.net.ssl.SSLException: Received fatal alert: bad_record_mac . I have also tried replacing TLS with SSL but it did not help. Please help me out, Thanks – devsri Feb 22 at 17:24
4  
While this is good during development phase, you should be aware of the fact that this allows anyone to MITM your secure connection by faking a random SSL certificate, which makes your connection not secure anymore. Have a look at this question to see it made the right way, here to see how to receive a certificate, and finally this to learn how to add it to the keystore. – cimnine Mar 1 at 7:44
show 4 more comments
feedback

While trying to answer this question I found a better tutorial. With it you don't have to compromise the certificate check.

http://blog.crazybob.org/2010/02/android-trusting-ssl-certificates.html

*I did not write this but thanks to Bob Lee for the work

link|improve this answer
2  
This is the perfect answer. I made an update post that shows how to deal with non listed CA's as I was getting a PeerCertificate error. See it here: blog.donnfelker.com/2011/06/13/… – Donn Felker Jun 13 '11 at 21:09
feedback

You can also look at my blog article, very similar to crazybobs.

This solution also doesn't compromise certificate checking and explains how to add the trusted certs in your own keystore.

http://blog.antoine.li/index.php/2010/10/android-trusting-ssl-certificates/

link|improve this answer
feedback

None of these worked for me (aggravated by the Thawte bug as well). Eventually I got it fixed with Self Signed SSL acceptance Android and Custom SSL handling stopped working on Android 2.2 FroYo

link|improve this answer
feedback

I don't know about the Android specifics for ssl certificates, but it would make sense that Android won't accept a self signed ssl certificate off the bat. I found this post from android forums which seems to be addressing the same issue: http://androidforums.com/android-applications/950-imap-self-signed-ssl-certificates.html

link|improve this answer
what is the solution for the same to get an https connection ... – Sam97305421562 Jun 15 '09 at 11:57
Http Post method will work for the same ? – Sam97305421562 Jun 15 '09 at 12:02
Like I said I don't know the Android specifics but I's day that you have to tell the platform what the ssl certificate of the server you are connecting to is. That is if you are using a self signed cert that's not recognized by the platform. The SslCertificate class will probably be helpful: developer.android.com/reference/android/net/http/… I'll dig into this later today when I have more time. – 2Ti Jun 15 '09 at 12:15
feedback

may this thread help, but i can not tell if it works will latest API :

http://groups.google.com/group/android-developers/browse%5Fthread/thread/1ac2b851e07269ba/c7275f3b28ad8bbc?#c7275f3b28ad8bbc

link|improve this answer
Could you provide a synopsis or excerpt from the linked thread? – Phoenix Nov 17 '11 at 16:11
feedback

This is a known problem with Android 2.x. I was struggling with this problem for a week until I came across the following question, which not only gives a good background of the problem but also provides a working and effective solution devoid of any security holes.

'No peer certificate' error in Android 2.3 but NOT in 4

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.