How to protect an iOS application from hacking?

I have an iOS app for $ 0.99 and I'm afraid someone will want to hack it. How can I protect my application from crackers?

+4
source share
3 answers

This is very easy with the small class that I implemented: https://github.com/itruf/crackify

Just import Crackify.h and check:

BOOL cracked = [Crackify isCracked]; 
+10
source

This is a list of checks to check if your application has broken.

  • plist size check
  • subscriber identity verification
  • binary encryption check
  • check modified date info.plist with modified date package
+3
source

If it’s in the store, it’s most likely been hacked. I would not waste time fighting the pirates, so far no one has been able to. Instead, I suggest focusing on creating apps that people are willing to pay for, or free apps supported by iAd.

0
source

All Articles