Skip to content

Commit 847ca91

Browse files
committed
Switch litehook to repo
1 parent 65d0558 commit 847ca91

File tree

6 files changed

+8
-240
lines changed

6 files changed

+8
-240
lines changed

.gitmodules

+3
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,6 @@
1010
[submodule "BaseBin/opainject"]
1111
path = BaseBin/opainject
1212
url = https://github.com/opa334/opainject
13+
[submodule "BaseBin/_external/modules/litehook"]
14+
path = BaseBin/_external/modules/litehook
15+
url = https://github.com/opa334/litehook

BaseBin/_external/modules/litehook

Submodule litehook added at f4d083d

BaseBin/systemhook/Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
TARGET = systemhook.dylib
22
CC = clang
33

4-
CFLAGS = -I../.include -I./src -isysroot $(shell xcrun --sdk iphoneos --show-sdk-path) -arch arm64 -arch arm64e -miphoneos-version-min=15.0 -Wno-deprecated-declarations -Os -moutline
4+
CFLAGS = -I../.include -I./src -I../_external/modules/litehook/src -isysroot $(shell xcrun --sdk iphoneos --show-sdk-path) -arch arm64 -arch arm64e -miphoneos-version-min=15.0 -Wno-deprecated-declarations -Os -moutline
55
LDFLAGS = -dynamiclib
66

77
sign: $(TARGET)
88
@ldid -S $^
99

10-
$(TARGET): $(wildcard src/*.c src/*.m ../libjailbreak/src/jbclient_xpc.c)
10+
$(TARGET): $(wildcard src/*.c src/*.m ../libjailbreak/src/jbclient_xpc.c ../_external/modules/litehook/src/*.c)
1111
$(CC) $(CFLAGS) $(LDFLAGS) -o $@ $^
1212

1313
clean:

BaseBin/systemhook/src/common.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ static kSpawnConfig spawn_config_for_executable(const char* path, char *const ar
6565
if (argv[0]) {
6666
if (argv[1]) {
6767
if (string_has_prefix(argv[1], "com.apple.WebKit.WebContent")) {
68-
// The most sandboxed process on the system, we can't support it on iOS 16+ for now
68+
// The most sandboxed process on the system, we can't support injection into it on iOS 16+ for now
6969
if (__builtin_available(iOS 16.0, *)) {
7070
return 0;
7171
}
@@ -309,7 +309,7 @@ int posix_spawn_hook_shared(pid_t *restrict pid,
309309
{
310310
int (*posix_spawn_orig)(pid_t *restrict, const char *restrict, struct _posix_spawn_args_desc *, char *const[restrict], char *const[restrict]) = orig;
311311

312-
int r = spawn_exec_hook_common(path, argv, envp, desc, trust_binary, jetsamMultiplier, ^int(char *const envp_patched[restrict]){
312+
int r = spawn_exec_hook_common(path, argv, envp, desc, trust_binary, jetsamMultiplier, ^int(char *const envp_patched[restrict]) {
313313
return posix_spawn_orig(pid, path, desc, argv, envp_patched);
314314
});
315315

BaseBin/systemhook/src/litehook.c

-230
This file was deleted.

BaseBin/systemhook/src/litehook.h

-6
This file was deleted.

0 commit comments

Comments
 (0)