-
Notifications
You must be signed in to change notification settings - Fork 74
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Rootless progress, not working
- Loading branch information
Showing
21 changed files
with
1,197 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,3 +18,4 @@ ChOma_host | |
*.dylib | ||
RootHelperSample/launchdshim/launchdhook/jitter/jitter | ||
Bootstrap/jb | ||
.stamp |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file modified
BIN
-1.42 KB
(99%)
RootHelperSample/launchdshim/cfprefsdshim/cfprefsdshimsignedinjected
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,16 @@ | ||
TARGET := iphone:clang:latest:15.0 | ||
FINALPACKAGE = 1 | ||
ARCHS = arm64 | ||
THEOS_PACKAGE_SCHEME = rootless | ||
include $(THEOS)/makefiles/common.mk | ||
|
||
LIBRARY_NAME = launchdhook | ||
FINALPACKAGE=1 | ||
launchdhook_FILES = $(wildcard *.m) $(wildcard *.c) $(wildcard verbose/*.m) $(wildcard jbserver/*.c) $(wildcard jbserver/*.m) $(wildcard fun/*.m) $(wildcard fun/kpf/*.c) $(wildcard fun/kpf/*.m) ../../jbroot.m | ||
launchdhook_CFLAGS = -fobjc-arc -isystem "../../../usprebooter/Private Headers I stole from the macOS SDK" -Wno-error -O3 | ||
launchdhook_CODESIGN_FLAGS = -S../launchdentitlements.plist | ||
launchdhook_LDFLAGS = -F./Frameworks -L./ -lbsm -lhooker -framework IOKit | ||
launchdhook_EXTRA_FRAMEWORKS += IOMobileFramebuffer IOSurface | ||
$(LIBRARY_NAME)_FILES = $(wildcard *.m) $(wildcard *.c) $(wildcard verbose/*.m) $(wildcard jbserver/*.c) $(wildcard jbserver/*.m) $(wildcard fun/*.m) $(wildcard fun/kpf/*.c) $(wildcard fun/kpf/*.m) ../../jbroot.m | ||
$(LIBRARY_NAME)_CFLAGS = -fobjc-arc -isystem "../../../usprebooter/Private Headers I stole from the macOS SDK" -Wno-error -O3 | ||
$(LIBRARY_NAME)_CODESIGN_FLAGS = -S../launchdentitlements.plist | ||
$(LIBRARY_NAME)_LDFLAGS = -F./Frameworks -L./ -lbsm -lhooker -framework IOKit | ||
$(LIBRARY_NAME)_EXTRA_FRAMEWORKS += IOMobileFramebuffer IOSurface | ||
after-package:: | ||
echo "[*] Signing launchd hook" | ||
ct_bypass -i .theos/obj/debug/launchdhook.dylib -o launchdhooksigned.dylib | ||
ct_bypass -i .theos/obj/launchdhook.dylib -o launchdhooksigned.dylib | ||
include $(THEOS_MAKE_PATH)/library.mk |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
TARGET := iphone:clang:latest:15.0 | ||
FINALPACKAGE = 1 | ||
ARCHS = arm64 | ||
THEOS_PACKAGE_SCHEME = rootless | ||
include $(THEOS)/makefiles/common.mk | ||
|
||
LIBRARY_NAME = libiosexechook | ||
$(LIBRARY_NAME)_FILES = $(wildcard *.m) $(wildcard *.c) | ||
$(LIBRARY_NAME)_CFLAGS = -fobjc-arc -isystem "../../../usprebooter/Private Headers I stole from the macOS SDK" -Wno-error -Wno-int-conversion -Wno-incompatible-function-pointer-types -O3 | ||
$(LIBRARY_NAME)_LDFLAGS = -F./Frameworks -L./ -lbsm -lhooker | ||
after-package:: | ||
echo "[*] Signing libiosexechook" | ||
ct_bypass -i .theos/obj/libiosexechook.dylib -r -o libiosexechook.dylib | ||
include $(THEOS_MAKE_PATH)/library.mk | ||
# Bootstrap/jb/usr/lib/libTS2JailbreakEnv.dylib | ||
# Use the built dylib here and put it as libts2jailbreakenv.dylib in bootstrap/jb/usr/lib/libTS2JailbreakEnv.dylib |
Oops, something went wrong.