Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Changed apple TV condition in offsets #144

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion yalu102/offsets.c
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ void init_offsets() {
allproc_offset = 0x5ec478; /* @Mila432 */
procoff = 0x360;
rootvnode_offset = 0x5f20b8; /* @Mila432 */
} else if (strstr(u.machine, "AppleTV5,3") && strstr(u.version, "root:xnu-3789.22.3~1/RELEASE_ARM64_S5L8960X")) { //Using Ian's condition, not having my AppleTV nearby
} else if (strcmp(u.version, "Darwin Kernel Version 16.1.0: Thu Sep 29 22:13:19 PDT 2016; root:xnu-3789.23.3~2/RELEASE_ARM64_T7000") == 0) {
allproc_offset = 0x5b8168;
procoff = 0x360; // tvOS 10.0.1 (14U71) @onchehuh (github)
rootvnode_offset = 0x5ba0b8;
Expand Down