Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Having seen this question on protecting your app from being cracked, I saw that the top answerer mentioned something about being able to see if a device was jailbroken by some internal imbalance in the kernel. Having looked into it a bit more, I discovered the Kernel Architecture Overview guide, and have knowledge of ways to interact with the Mach-BSD kernel. All I need to know is: What am I looking for? Is there some kind of key or internal state that changes when the device is jailbroken in the context of the kernel?

To be clear, I'm not looking for code (I know how to do these things myself), I'm looking for what to look for... As weird as that sounds. I've seen the answers in the linked questions, I know that they work, but I'm wondering about an all kernel route, which seems more of a generic and efficient way to check instead of searching for directories that might change or plist keys that might have different names.

I also don't intend to disable any functionality on the part of the app because of piracy (just show a message or something based on a condition).

share|improve this question
10  
it's a simple system call: beTharPiratesHere() – Chris May 4 '12 at 5:15
12  
I find it rather weird to down vote this question. It is rather clear in writing, is answerable by hinting a coding solution, is researched and has not been asked before in this form. – Till May 4 '12 at 5:52
1  
@Till I agree, this is a great question to have on the site. I would like to see more answers posted to this question, it could be a great reference for current and future users.(cough as well as myself) – 0x7fffffff May 6 '12 at 8:00
2  
@YllierDev clearly you're not familiar with the concept of sarcasm. It's a joke. – Chris May 6 '12 at 13:51
2  
@Chris I'm sorry if it was indeed pure sarcasm. I'm pissed at devs and people putting jailbreak on the same level as piracy. And as you might know, comments like the one you made usually express exactly that :( – YllierDev May 6 '12 at 18:16
show 3 more comments

1 Answer

up vote 17 down vote accepted

All the "modern" kernel patches are based on comex's patches.

the main things which are being patched are:

  • security.mac.proc_enforce
  • cs_enforcement_disable (kernel and AMFI)
  • PE_i_can_has_debugger
  • vm_map_enter
  • vm_map_protect

Oh, and there are sandbox patches too. If you wanna read more about all these patches I suggest you take a look at iOS Hacker's Handbook.

Edit: I just came up with a simple idea to check if the device is jailbroken, but I'm not sure if Apple allows the use of these functions:

  1. allocate some memory using mach_vm_allocate()

  2. change the protection of that page via mach_vm_protect() to VM_PROT_READ | VM_PROT_EXECUTE | VM_PROT_COPY

  3. Since the stock iOS doesn't allow VM_PROT_EXECUTE from inside your app this will fail, check the return value of mach_vm_protect(), when not jailbroken, but succeed if the device is jailbroken.

share|improve this answer
3  
Finally, an answer that isn't sarcastic. +1 for Comex's repo clone. – CodaFi May 5 '12 at 22:42
2  
+1 iOS Hacker's Handbook! – qegal Jun 2 '12 at 1:27
1  
please check my edited answer. I added an idea about a check – YllierDev Jun 3 '12 at 23:42
Sorry, haven't been here for a while. you still need the confirmation? – YllierDev Jun 19 '12 at 14:11
I'm sorry I haven't been around this thing. Unfortunately, iOS doesn't support mach_vm_allocate(), because the <mach/vm_user> header is unavailable. – CodaFi Jul 2 '12 at 7:30

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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