#include "codesign.h" #include "coretrust_bug.h" #include #include #include #include #include char *extract_preferred_slice(const char *fatPath) { FAT *fat = fat_init_from_path(fatPath); if (!fat) return NULL; MachO *macho = fat_find_preferred_slice(fat); if (!macho) return NULL; char *temp = strdup("/tmp/XXXXXX"); int fd = mkstemp(temp); MemoryStream *outStream = file_stream_init_from_path(temp, 0, 0, FILE_STREAM_FLAG_WRITABLE | FILE_STREAM_FLAG_AUTO_EXPAND); MemoryStream *machoStream = macho_get_stream(macho); memory_stream_copy_data(machoStream, 0, outStream, 0, memory_stream_get_size(machoStream)); fat_free(fat); memory_stream_free(outStream); close(fd); return temp; } int apply_coretrust_bypass_wrapper(const char *inputPath, const char *outputPath) { char *machoPath = extract_preferred_slice(inputPath); printf("extracted best slice to %s\n", machoPath); int r = apply_coretrust_bypass(machoPath); if (r != 0) { free(machoPath); return r; } r = copyfile(machoPath, outputPath, 0, COPYFILE_ALL | COPYFILE_MOVE | COPYFILE_UNLINK); if (r == 0) { chmod(outputPath, 0755); printf("Signed file! CoreTrust bypass eta now!!\n"); } else { perror("copyfile"); } free(machoPath); return r; } int main(int argc, char *argv[]) { if (argc < 2) return -1; char *input = argv[argc-1]; NSDictionary *customEntitlements = nil; if (argc == 4) { if (!strcmp(argv[1], "--entitlements")) { NSString *entitlementsPath = [NSString stringWithUTF8String:argv[2]]; customEntitlements = [NSDictionary dictionaryWithContentsOfFile:entitlementsPath]; } } char *machoPath = extract_preferred_slice(input); printf("Extracted best slice to %s\n", machoPath); int r = codesign_sign_adhoc(machoPath, true, customEntitlements); if (r != 0) { printf("Failed adhoc signing (%d) Continuing anyways...\n", r); } else { printf("AdHoc signed file!\n"); } printf("Applying CoreTrust bypass...\n"); if (apply_coretrust_bypass(machoPath) != 0) { printf("Failed applying CoreTrust bypass\n"); return -1; } if (copyfile(machoPath, input, 0, COPYFILE_ALL | COPYFILE_MOVE | COPYFILE_UNLINK) == 0) { chmod(input, 0755); printf("Applied CoreTrust Bypass!\n"); } else { perror("copyfile"); return -1; } free(machoPath); return 0; }