libSupport is a mini tool which helps modders combat side load detection in iOS apps.
Features:
- [JIT Required] { Hook, CodePatch }
Bypass Sideload Detection
To bypass sideload detection, SupportEntryInfo was provided so that you can modify and tweak the library for you apps specific needs.
Example of SupportInitialize Usage:
SupportEntryInfo entry_info = {
.teamIdentifier = NULL,
.bundleIdentifier = "com.example.myapp",
.files = {
"CydiaSubstrate",
"embedded.mobileprovision",
"libSupport",
"BypassInjector",
"H5GG",
"iGameGod",
NULL
},
// Use full power if possible.
.general = {
.settings = {
.hookSymbols = true,
.hookMessages = true,
.hookExpierimental = true,
.allowDebugging = true
}
}
};
SupportInitilize(&entry_info);
How It Works:
Bundle Identifier: Specify your app’s original bundle identifier to match its expected value.
Files: Include any symbols and specific files that could be flagged during sideload detection.
Settings: Options for modifying libSupport's internal behavior, such as enabling symbol hooking, debugging, or experimental features.
This structure ensures flexibility, allowing you to bypass various sideload detection mechanisms which could be present.
Get libSupport v1.2.1
With libSupport, you're in control of your app's environment and are encouraged to create, experiment, and debug.
Happy Modding, @Red16