Skip to content

Instantly share code, notes, and snippets.

@opa334
Last active April 20, 2023 16:21
Show Gist options
  • Save opa334/0c18fd35139a1866134c2c5121f6bbb8 to your computer and use it in GitHub Desktop.
Save opa334/0c18fd35139a1866134c2c5121f6bbb8 to your computer and use it in GitHub Desktop.
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;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment