forked from JailbreakDev/PalBreak
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Tweak.xm
35 lines (32 loc) · 1.23 KB
/
Tweak.xm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#include <stdio.h>
#include <mach-o/dyld.h>
#include <dlfcn.h>
#include <stdio.h>
#include <substrate.h>
#ifdef DEBUG
#define PPDebugLog(fmt, ...) NSLog((@"%s:%d: "fmt),__FUNCTION__,__LINE__,##__VA_ARGS__)
#else
#define PPDebugLog(...)
#endif
static void ppfix_image_added(const struct mach_header *mh, intptr_t slide) {
Dl_info image_info;
int result = dladdr(mh, &image_info);
if (result == 0) {
return;
}
const char *image_name = image_info.dli_fname;
PPDebugLog(@"[PalBreak] Image Added: %s",image_name);
if (strstr(image_name,"/Library/MobileSubstrate") != NULL || strcmp(image_name,"/Library/Frameworks/CydiaSubstrate.framework/Libraries/SubstrateLoader.dylib") == 0 || strcmp(image_name,"/usr/lib/libsubstrate.dylib") == 0 || strcmp(image_name,"/Library/Frameworks/CydiaSubstrate.framework/CydiaSubstrate") == 0) {
PPDebugLog(@"[PalBreak] Detected Substrate Image: %s",image_name);
void *handle = dlopen(image_name,RTLD_NOLOAD);
PPDebugLog(@"[PalBreak] Removing Substrate handle: %p (%s)",handle,image_name);
if (handle) {
dlclose(handle);
}
}
setenv("_MSSafeMode", "0", true);
}
__attribute__((constructor)) static void pp_init() {
PPDebugLog(@"[PalBreak] Init");
_dyld_register_func_for_add_image(&ppfix_image_added);
}