-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9105ed4
commit 3490935
Showing
111 changed files
with
14,546 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
#import <UIKit/UIKit.h> | ||
|
||
@interface AppDelegate : UIResponder <UIApplicationDelegate> | ||
|
||
@property (nonatomic, strong) UIWindow *window; | ||
@property (nonatomic, strong) UINavigationController *rootViewController; | ||
|
||
@end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
#import "AppDelegate.h" | ||
#import "RootViewController.h" | ||
|
||
@implementation AppDelegate | ||
|
||
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { | ||
_window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds]; | ||
_rootViewController = [[UINavigationController alloc] initWithRootViewController:[[RootViewController alloc] init]]; | ||
_window.rootViewController = _rootViewController; | ||
[_window makeKeyAndVisible]; | ||
return YES; | ||
} | ||
|
||
@end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
@interface DumpDecrypted : NSObject { | ||
char decryptedAppPathStr[PATH_MAX]; | ||
char *filename; | ||
char *appDirName; | ||
char *appDirPath; | ||
} | ||
|
||
@property (assign) NSString *appPath; | ||
@property (assign) NSString *docPath; | ||
|
||
-(id)initWithPathToBinary:(NSString *)pathToBinary; | ||
-(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; | ||
-(void)IPAServer:(int)listenPort; | ||
-(int)getSocketForPort:(int)listenPort; | ||
-(NSDictionary *)getIPAddresses; | ||
|
||
@end |
Oops, something went wrong.