Jailbreak detection: Difference between revisions

From iPhone Development Wiki
(None of this info was really useful ( and no need to shout out failbreaks ))
Tag: Replaced
 
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>
|-
| Meridian || <code>/.meridian_installed</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 a warning letting users know something's wrong.
 
{| class="wikitable"
! Jailbreak !! Path
|-
| th0r || <code>/.bootstrapped_Th0r</code>
|-
|-
|}

Latest revision as of 03:13, 8 July 2022

Stub