Skip to content

Commit

Permalink
Initial Commit
Browse files Browse the repository at this point in the history
  • Loading branch information
wh1te4ever committed Nov 28, 2023
1 parent 9105ed4 commit 3490935
Show file tree
Hide file tree
Showing 111 changed files with 14,546 additions and 0 deletions.
Binary file added .DS_Store
Binary file not shown.
8 changes: 8 additions & 0 deletions AppDelegate.h
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
14 changes: 14 additions & 0 deletions AppDelegate.m
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
19 changes: 19 additions & 0 deletions DumpDecrypted.h
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
Loading

0 comments on commit 3490935

Please sign in to comment.