Jump to content

AnotherLurker

Senior Member
  • Posts

    1,093
  • Joined

  • Last visited

Everything posted by AnotherLurker

  1. Entering
  2. I thought you stopped hacking Good job though
  3. Working perfectly!
  4. So, at the time of posting, IDA 6.95 was just released by hex-rays: https://www.hex-rays.com/products/ida/6.95/index.shtml Now if you somehow didn't notice the bold text at the top of the article, IDA now has an iPhone Debugger! Hopefully this will be very stable compared to lldb. Also, the debugger likely also works on Windows as well as mac. What are your thoughts on it? How stable do you think this will be?
  5. No reaction since the content is hidden
  6. I think you forgot the last step? (Opening .bash_profile and...) Can you check again? Also make sure to restart the Cygwin terminal and editing .bash_profile
  7. Did you follow my tutorial?
  8. Oh, didn't see your other mistake, here you go: NSDictionary *Mykey = NULL; %hook PSUISoftwareUpdateController -(id)init { if (!Mykey) { Mykey = [NSDictionary dictionaryWithContentsOfFile:@"/User/Library/Preferences/net.iperis.mypkg.plist"]; } if([[Mykey objectForKey:@"softwareUpdate"] boolValue]){ return nil; } return %orig(); } %end
  9. You can't have NSDictionary initialized as a global variable, instead you should set MyKey to null, then check to see if initialized in init() Here's an example (Contains a few other fixes as well): NSDictionary *Mykey = NULL; %hook PSUISoftwareUpdateController -(id)init { if (!Mykey) { Mykey = [NSDictionary dictionaryWithContentsOfFile:@"/User/Library/Preferences/net.iperis.mypkg.plist"]; } if([[Mykey objectForKey:@"softwareUpdate"] boolValue]){ return %orig(nil); } return %orig(); } %end
  10. You don't need that if you're using the new theos: https://www.github.com/theos/theos
  11. FreedomCheats_LDFLAGS = -Wl, -segalign, 4000 in your makefile I've been programming for 2 years
  12. @@Taylor Meyer You don't either LDFLAGS or CFLAGS in your project
  13. How did you install lldb on your device? What device version are you on?
  14. I bought Flex 3, beside some server-connection issues, it's been going well. (It is a beta)
  15. Change #include <UIKit>to#import <UIKit/UIKit.h>
  16. Buy it and support a developer
  17. iFunBox 4.0 https://a.cnutflaps.me/rhpefz.png
×
  • 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