An Android/Iphone app will be accessing application data from the server. [Django-Python]

How can I secure the communication with the mobile app ?

Expectation : Secure enough for sensitive information like passwords, there shall be no direct way of decryption except brute-forcing.

My requirements :

  • Authentication [Only the app is authorized]
  • Integrity [Messages should not be modified in between]
  • Privacy [Communication should not be readable if sniffed]

My effort:

  • SSL authenticates only the Server, not the client.
  • I can-not use a symmetric encryption [Provides only Privacy]
  • Digital signature is not possible [Lacks Privacy]
  • PGP full-fills all 3 requirements.

Problem :

  • PGP requires to store keys on client app.
  • There seems to be no assuring way of securing keys on client app.
  • If the key is out, then PGP or Symmetric encryption are equally vulnerable.
  • Reverse-Engineering PGP keys or symmetic keys is equally hard.
  • In that case PGP is a non-sense burden on the mobile processor.
  • OAuth is again useless, since it also have a client key.

So, how can/should I move forward on this ? How does the industry deals with this ?

Should I implement casual approach :

  • Use simple SSL and cross my fingers ?, since authentication is not possible if the keys are stolen? (Only server authentication is possible with this)

Update:

Conclusion was to use AES, since if I can keep the key secure then I am as good as SSL. Plus I can keep changing the key over-time for better security. Contribute if you think there is a better way, do read the entire post before posting.

link|improve this question

feedback

2 Answers

up vote 3 down vote accepted

You're working on bad information. SSL can absolutely authenticate the client, it's just not something that is done for the bulk of SSL as the protocol is (or, atleast was) typically used to protect e-commerce sites where authentication of the server was important but doing so with the client was not important and/or not feasible. What you want to do is employ mutually-authenticated SSL, so that your server will only accept incoming connections from your app and your app will only communicate with your server.

Here's the high-level approach. Create a self-signed server SSL certificate and deploy on your web server. If you're using Android, you can use the keytool included with the Android SDK for this purpose; if you're using another app platform like iOS, similar tools exist for them as well. Then create a self-signed client and deploy that within your application in a custom keystore included in your application as a resource (keytool will generate this as well). Configure the server to require client-side SSL authentication and to only accept the client certificate you generated. Configure the client to use that client-side certificate to identify itself and only accept the one server-side certificate you installed on your server for that part of it.

If someone/something other than your app attempts to connect to your server, the SSL connection will not be created, as the server will reject incoming SSL connections that do not present the client certificate that you have included in your app.

A step-by-step for this is a much longer answer than is warranted here. I would suggest doing this in stages as there are resources on the web about how to deal with self-signed SSL certificate in both Android and iOS, both server and client side. There is also a complete walk-through in my book, Application Security for the Android Platform, published by O'Reilly.

link|improve this answer
This is definitely something that I was missing. Now, I don't know much about SSL on client-side. Though, I will explore keytool for Android but I guess for that as well we would require to save a certificate on client-side. Since, there is a tool i.e. keytool on android, so is there a mechanism to save the certificate securely ? (Since, android knows that this info is sensitive to the app) – Yugal Jindle Jan 10 at 14:08
Going by your profile, you are the perfect guy to answer this question. – Yugal Jindle Jan 10 at 14:11
2  
@jeffsix Nice plug. And a copy-paste from stackoverflow.com/questions/8708849/… I thought I had seen this answer before... – Nikolay Elenkov Jan 10 at 14:53
1  
The certificate, and private key, are absolutely saved securely...encrypted with a password. Now, your app needs to have that password to access it so that's an inherent insecurity but you've got to have the access point somewhere. :) Good luck. – jeffsix Jan 11 at 3:49
@NikolayElenkov And the answer is just as correct here. Mutually authenticated SSL is a solution to a lot of common use-cases...I just hope that more and more developers realize this. – jeffsix Jan 11 at 3:51
show 7 more comments
feedback

Use client authentication with SSL or just layer your own client authentication (username/password, token, etc) on top of server-authentication SSL.

(Edit: Moving the comment here, since it won't fit as a comment)

To elaborate a bit, any authentication info needs to be stored or entered in the app. If you have people enter the password each time, you don't need to save it, but that's clearly inconvenient. You can encrypt it with a device-specific key, so it's not visible on rooted devices. With a private key, you need to either protect it with a user entered password (see above) or have it protected by the system. That is only available since Android 4.0 (ICS) with the public API to the system keystore, the KeyChain class. In this case, the user needs to unlock (using pattern/password or PIN) the phone to access the keystore.

link|improve this answer
Please elaborate.. and please refer to requirements and explain a bit how are they getting satisfied. – Yugal Jindle Jan 10 at 6:21
Username and password are again to be stored on the app, that I am assuming will be stolen like the keys. – Yugal Jindle Jan 10 at 6:22
How do you authenticate the client with SSL ? – Yugal Jindle Jan 10 at 6:23
1  
Is it that hard to Google "SSL client authentication"? With a client certificate and private key. – Nikolay Elenkov Jan 10 at 6:40
I am searching on it already. I wanted you to elaborate conceptually since client-side SSL is new to me. – Yugal Jindle Jan 10 at 14:09
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

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