How can I make sure the data that people send to GameCenter (like score, and peer data exchange) is not tampered with? That is, the network data comes from securely stored data (e.g. using SQLCiphier), and is not modified midway? Is this impossible without a custom server side implementation?

link|improve this question

79% accept rate
feedback

2 Answers

up vote 2 down vote accepted

Invaiarbly you will encounter a CWE-602: Client-Side Enforcement of Server-Side Security violation. So the answer is no, you can't stop this.

link|improve this answer
feedback

You can put a checksum in but that can obviously be defeated if the hacker figures it out. You could encrypt the data using a private key, but then you have to go through CCATS to get your app accepted.

Other than that you are pretty much stuck without using a server side validation.

link|improve this answer
It's my understanding that if you use Apple libraries to do encryption, you don't need to have special approval. – Roger Gilbrat Nov 16 '11 at 21:14
Keychain only, if you use LibCrypto you have to get certified. Looks like it got changed recently(ish). stackoverflow.com/questions/2128927/… – logancautrell Nov 16 '11 at 21:57
There seems to be some confusion on this. I've read you have to get certified for LibCrypto, but according to this you do not. iphonedevelopment.blogspot.com/2009/02/… – logancautrell Nov 16 '11 at 21:59
feedback

Your Answer

 
or
required, but never shown

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