Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how do I protect my iOS app from being cracked? [closed]

I have $0.99 iOS app and I'm afraid someone would like to crack it. How can I protect my app from crackers?

like image 215
Valeriy Antonov Avatar asked Dec 11 '22 20:12

Valeriy Antonov


2 Answers

It's very easy with little class, which I implemented: https://github.com/itruf/crackify

Just import Crackify.h and check:

BOOL cracked = [Crackify isCracked];
like image 166
werbary Avatar answered Dec 28 '22 16:12

werbary


these are some check list to check whether your app is cracked.

  1. checking plist size
  2. checking signer identity
  3. checking if binary is crypted
  4. checking modified date of info.plist against modified date of package
like image 31
Shineeth Hamza Avatar answered Dec 28 '22 16:12

Shineeth Hamza