Search code examples
iosiphonein-app-purchasejailbreak

How can I detect LocallApStore tool on the iPhone?


How can I detect LocallApStore tool on the iPhone? Also the same question for iApFree and iApCracker.


Solution

  • So, for this thing you have to detect it's dylib. By calling

    NSString *dylibPath = @"/Library/MobileSubstrate/DynamicLibrares/LocalIAPStore.dylib";
    BOOL fileExiste = [[NSFileManager defaultManager] fileExiste
    sAtPath:dylibPath];
    If (fileExiste) {
        NSLog (@"existe");
    }
    

    and others you have to detect there dylibs too, Good luck