I have come across a few articles on inter-app communication on iOS, e.g. "2-way app integration on the iPhone: How it works", and "Apple Approved iPhone Inter-process Communication". Essentially they use custom URL schemes to communicate. My question is what are the security concerns if I were to pass some sensitive data, such as login credentials?

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

Don't use URL schemes for any sensitive data. They are in no way designed to be secure.

Instead you should use the Keychain mechanisms in iOS which are designed for exactly this purpose.

link|improve this answer
Could you please tell me a scenario where using URL schemes may be insecure? – William Niu Mar 30 '11 at 0:06
It is passed unencrypted between the processes. Additionally you have no control over the receiver, so any ill-willed process could register the same url-scheme and intercept the credentials – Claus Broch Mar 30 '11 at 6:40
I knew that. But for a unjailbroken phone, isn't it only the intended app would get to see that? – William Niu Mar 30 '11 at 7:01
1  
If your intended app is not installed on the iPhone, but instead another app registers the same url-scheme, then you might inadvertently send the url to the wrong app. There are no built-in protections on these schemes and no way to check which app have registered a custom scheme. – Claus Broch Mar 30 '11 at 20:31
Claus, the iOS documentation for SecItemAdd explains that you can use the kSecAttrAccessGroup attribute on keychain items to specify a keychain access group which can access that item. Isn't that equally insecure? Can't a rogue application simply declare the same keychain-access-groups entitlement and access the sensitive data? – Bob Whiteman Dec 20 '11 at 3:15
feedback

Your Answer

 
or
required, but never shown

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