Jailbreak detection: Difference between revisions

From iPhone Development Wiki
No edit summary
(None of this info was really useful ( and no need to shout out failbreaks ))
Tag: Replaced
 
(3 intermediate revisions by one other user not shown)
Line 1: Line 1:
Since there are more and more jailbreaks being created by hobbyists, each with their own respective quirks, you may have to change the behavior of your tweak / packaging depending on the jailbreak installed on the user's device.
Stub
 
None of this advice is foolproof but it's worth taking into consideration.
 
== Hidden files ==
 
==== Legitimate Jailbreaks ====
 
{| class="wikitable"
! Jailbreak !! Path
|-
| Electra (11.1.2) || <code>/.electra_installed</code>
|-
| Electra (11.3.1) || <code>/.electra_installed</code>
|-
| unc0ver || <code>/.installed_unc0ver</code>
|-
|-
|}
 
==== "Fake" Jailbreaks ====
 
It's probably not worth supporting these. These jailbreaks are redundant and, arguably, harm the jailbreak community by merely existing.
 
If anything, you should have some type of warning so users know that there's something wrong.
 
{| class="wikitable"
! Jailbreak !! Path
|-
| th0r || <code>/.bootstrapped_Th0r</code>
|-
|-
|}

Latest revision as of 03:13, 8 July 2022

Stub