Jump to content

0xHexBode

Senior Member
  • Posts

    118
  • Joined

  • Last visited

Everything posted by 0xHexBode

  1. thx
  2. upd 0.16
  3. Yep keybode#7633
  4. No, i'm use only IDA and theos
  5. Use IDA, String, and tutorial iosgods, And you will definitely succeed
  6. added "No spread" and upd 0.15
  7. Maybe this app++, then you need to uninstall the app itself, and download from the app store(this is just my guess)
  8. i'm use the unarchiver
  9. #import "vm_writeData.h" #import <Foundation/Foundation.h> #import <UIKit/UIKit.h> #define string @"text" UIAlertView *alert; %hook AppController - (char)application:(id)fp8 didFinishLaunchingWithOptions:(id)fp12 { NSString *vActivateStr = [NSHomeDirectory() stringByAppendingPathComponent:@"Documents/test.txt"]; vActivateStr= [NSString stringWithContentsOfFile:vActivateStr encoding:NSUTF8StringEncoding error:nil]; if ([vActivateStr isEqualToString:string]) { [NSTimer scheduledTimerWithTimeInterval:5.0 target:self selector:@selector(gameActivateSucess) userInfo:nil repeats:NO]; return %orig; } else { [NSTimer scheduledTimerWithTimeInterval:5.0 target:self selector:@selector(gameActivateFailed) userInfo:nil repeats:NO]; return %orig; } } %new -(void)gameActivateSucess { UIAlertView *alert = [[UIAlertView alloc] initWithTitle: @"title" message: @"Activated Sucess" delegate:self cancelButtonTitle:@"ok" otherButtonTitles: nil]; [alert show]; } %new -(void)gameActivateFailed { alert = [[UIAlertView alloc] initWithTitle:@"Title" message:@"Please enter your password" delegate:self cancelButtonTitle:@"Cancel" otherButtonTitles: @"Login", nil]; alert.alertViewStyle = UIAlertViewStylePlainTextInput; [alert show]; } %new - (void)alertView:alert clickedButtonAtIndex:(NSInteger)buttonIndex { if (buttonIndex == 0) { } if (buttonIndex == 1) { NSString *passwordStr = [alert textFieldAtIndex:0].text; NSData *data = [passwordStr dataUsingEncoding:NSUTF8StringEncoding]; NSString *directoryStr = [NSHomeDirectory() stringByAppendingPathComponent:@"Documents/text.txt"]; [data writeToFile:directoryStr atomically:YES]; //write plist exit(0); } } %end Whether it is possible to make so that at start not the text which is specified in "#define string @"text"", And checked from the document for example which is on "iosgods.com/check.txt"
  10. @DADi @Ted2
  11. Good day, there is a line "#define string @"iosgods" " Next in the code is the checking of this string if the text entered matches, then run the application, I have a question that you need to replace the "#define string @"iosgods" " that would have entered text checked out the document for example iosgods.com/text.txt?
  12. If you have a problem with cydia impactor, please use the forum or google to find information on how to solve the problem
  13. @Ted2Bro, maybe tutorial?
×
  • Create New...

Important Information

We would like to place cookies on your device to help make this website better. The website cannot give you the best user experience without cookies. You can accept or decline our cookies. You may also adjust your cookie settings. Privacy Policy - Guidelines