Skip to content

Commit

Permalink
Add a script to disable iOS jailbreak detection (WIP)
Browse files Browse the repository at this point in the history
  • Loading branch information
pimterry committed Jul 16, 2024
1 parent 5b0fd45 commit 185e91f
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions ios/ios-disable-detection.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
/**************************************************************************************************
*
* Some iOS apps attempt to detect jailbroken devices and similar. This script disables these
* detections to ensure you can freely manage your device and modify your apps.
*
* Source available at https://github.com/httptoolkit/frida-interception-and-unpinning/
* SPDX-License-Identifier: AGPL-3.0-or-later
* SPDX-FileCopyrightText: Tim Perry <[email protected]>
*
*************************************************************************************************/

if (ObjC.available) {
try {
const JailMonkey = ObjC.classes.JailMonkey;
if (JailMonkey) {
const isJailBroken = JailMonkey["- isJailBroken"];
Interceptor.attach(isJailBroken.implementation, {
onLeave: function(retval) {
if (DEBUG_MODE) console.log("JailMonkey isJailBroken check hooked & skipped");
retval.replace(ptr("0x0"));
}
});

console.log('== Hooked JailMonkey detection ==');
} else {
if (DEBUG_MODE) console.log('Skipping JailMonkey hook - not present');
}
} catch (err) {
console.error(`[!] ERROR: JailMonkey isJailBroken hook failed: ${err}`);
}
}

0 comments on commit 185e91f

Please sign in to comment.