Initial Commit

This commit is contained in:
Donato Fiore
2023-11-30 21:06:53 -05:00
committed by GitHub
commit 7e2c90a560
59 changed files with 14054 additions and 0 deletions

17
TDDumpDecrypted.h Normal file
View File

@@ -0,0 +1,17 @@
@interface DumpDecrypted : NSObject {
char decryptedAppPathStr[PATH_MAX];
char *filename;
char *appDirName;
char *appDirPath;
}
@property (assign) NSString *appPath;
@property (assign) NSString *docPath;
@property (assign) NSString *appName;
@property (assign) NSString *appVersion;
- (id)initWithPathToBinary:(NSString *)pathToBinary appName:(NSString *)appName appVersion:(NSString *)appVersion;
- (void)createIPAFile:(pid_t)pid;
- (BOOL)dumpDecryptedImage:(const struct mach_header *)image_mh fileName:(const char *)encryptedImageFilenameStr image:(int)imageNum task:(vm_map_t)targetTask;
- (NSString *)IPAPath;
@end