Skip to content

Instantly share code, notes, and snippets.

@froyo4u
froyo4u / iOS 14 on 16 SEP Activation Guide.md
Last active March 29, 2024 15:15 — forked from Orangera1n/15on16sepactivationguide.md
How to activate a device on iOS 14 that was futurerestored with 16 sep

tf is this?

This is a guide on how to activate your idevice on iOS 14 (15 won't work with this guide due to SSV) when it's futurerestored with 16 sep.

ALSO: THIS IS RECOMMENDED FOR NON-IDIOT USERS ONLY, I am not responsible for your device being broken (tho idk how it becomes broken via this)

if you need help, make a comment. I'll do my best to respond. or DM me on discord since I'll def respond there: froyo4u

You will need:

more than 3 braincells

@opa334
opa334 / jit.c
Last active April 20, 2023 16:21
JIT on Dopamine Jailbreak
bool dopamineGetJIT(void) {
int64_t (*jbdswDebugMe)(void) = dlsym(RTLD_DEFAULT, "jbdswDebugMe");
if (jbdswDebugMe) {
int64_t debugRet = jbdswDebugMe();
return debugRet == 0;
}
return false;
}