vote up 8 vote down star
8

If I want my app to behave differently on a jailbroken iPhone, how would I go about determining this? I thought someone had asked this question before, but I cannot seem to find it now.

flag

I have to point out that if this were that easy or straight-forward, we wouldn't have many jail-broken iPhones in the first place. – Joel Coehoorn Jan 5 at 14:32
To be clear, I'm not necessarily interested in knowing if the app is cracked, just that it's a jailbroken device. Might be easier. – Ben Gottlieb Jan 5 at 16:08

3 Answers

vote up 9 vote down check

It depends what you mean by jailbreak. In the simple case, you should be able to see if Cydia is installed and go by that - something like

NSString *filePath = @"/Applications/Cydia.app";
if ([[NSFileManager defaultManager] fileExistsAtPath:filePath])
{
   // do something useful
}

For hacked kernels, it's a little (lot) more involved.

link|flag
1  
Wouldn't it be enough to look for any file/dir outside your sandbox? Like /etc? – Rhythmic Fistman Aug 1 at 4:53
vote up 2 vote down

Checking if the kernel is broken isn't THAT much more involved.

Jailbreaking makes the kernel's signature check of signed code always report that code is signed correctly, unbroken phones cannot run code with a bad signature.

So, include a separate executable in the app with a bad signature. It could just be a 3-line program that has main() and a return value. Compile the executable without code signing (turn it off in Project Settings->Build) and sign it with a different key using the "codesign" commandline utility.

Have your app exec the separate executable. If your program can't get the return value when running the separate executable with the bad sig, it's definitely jailed. If the separate executable returns A-OK, the phone is definitely jailbroken.

link|flag
vote up 2 vote down

I'd suggest looking for files that aren't present on a "vanilla" iPhone. All jailbreak kits I've seen install ssh. That might be a good indicator of a jailbroken phone.

link|flag

Your Answer

Get an OpenID
or

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