Jump to content

[X64] libSupport: Bypass Sideload Detection, Hook and Patch Memory


5 posts in this topic

Recommended Posts

Updated (edited)

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:

  1. Bundle Identifier: Specify your app’s original bundle identifier to match its expected value.
  2. Files: Include any symbols and specific files that could be flagged during sideload detection.
  3. SettingsOptions 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 :)

Updated by Red16
refactoring better readability.
  • Like 7
  • Agree 1
  • Red16 changed the title to [X64] libSupport: Bypass Sideload Detection, Hook and Patch Memory

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
  • Create New...

Important Information

We would like to place cookies on your device to help make this website better. The website cannot give you the best user experience without cookies. You can accept or decline our cookies. You may also adjust your cookie settings. Privacy Policy - Guidelines