Im wrapping up my Iphone app. Im just worried about security at our web server level. The data is being pulled over to the iphone app via web services.

What security measures can i put on the web services so that I am not vulnerable?

Thanks

link|improve this question

75% accept rate
I have added iPhone tag so that somebody with iPhone experience can share some information about security features allowed on iPhone. – Ladislav Mrnka Aug 17 '10 at 22:55
@Ladislav - That's beyond the scope of the question. This is for web services. A separate question should be asked in regards to the iPhone security features. – Kyle Rozendo Aug 19 '10 at 5:08
@Kyle: I don't agree. If you want to write web service consumed by iPhone client you have to know which security features are easily applicable on client platform. I can easily develop secured service which you will not be able to consume on iPhone. Also I have seen plenty of questions targeting problems with consuming services with WS-Security on iPhone. – Ladislav Mrnka Aug 19 '10 at 7:27
@Ladislav - Odd, but fair. Will re-add the tag, however I still feel they iPhone security features deserves its own question. – Kyle Rozendo Aug 19 '10 at 9:52
feedback

3 Answers

up vote 4 down vote accepted

A few pointers:

  • Verify all requests from the Web Service using RSA signed XML
  • Make sure everything is transmitted over SSL
  • Encrypt all data traffic. I recommend looking into the DUKPT key management system, using AES encryption.
  • Use WCF - It is the latest standard after all (also this)
  • Use some sort of web service authentication. This can be as simple as every request needing a username and password to be valid. This will slow down direct call attempts, and if you get the encryption right, you won't have to have the usernames and passwords in plain XML.
  • The most important thing is make sure the server itself is secure. If someone cracks the server, you're dead in the water, nevermind what else you do.

EDIT:

Have a look at this question for iPhone to .NET AES Interoperability.

link|improve this answer
Is there a standard encryption. I mean encrypting at the .net level at the server than decrypting in xcode at the apple iphone level? Hope this is not a stupid question. – Raven Aug 17 '10 at 20:20
@Tricky - Basically you'll have to have a look. AES is a standard, so the iPhone should be able to support it. – Kyle Rozendo Aug 17 '10 at 20:27
You're likely going to be limited by the iPhone side of things. – Steven Sudit Aug 17 '10 at 20:35
Wow so you recommend implementing 2 forms of encryption and 2 forms of authentication but you make no mention of vulnerabilities like sql injection. I'm sorry but this post is over engineering fail. – Rook Aug 17 '10 at 23:41
1  
@Kyle Rozendo I can't really argue with that too much, to be honest https does have problems. This blackhat talk is really good: thoughtcrime.org/software/sslstrip – Rook Aug 18 '10 at 9:24
show 8 more comments
feedback

You can secure your services with normal HTTP Auth, SSL if you're not using the web service payload to implement authentication. Are you the server side programmer too?

link|improve this answer
feedback

It doesn't matter what you "put on" the WCF service if your WCF service is insecure. You must assume that an attacker can access your web service without the iPhone client. Is your web service vulnerable to sql injection? Are you exposing nasty functionality that could allow an attacker to read files on your server or to change another users account? Keep OWASP Injection flaws in mind. Use HTTPS to keep your clients safe from spilling information. The rest should be making sure the functionality you expose is safe.

An attacker will be able find any secret key or password you try and store in your iPhone binary or in memory. The attacker has more control over the iPhone than you do, he can jail break the device and then there is no place to hide.

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.