
AnotherLurker
Senior Member-
Posts
1,093 -
Joined
-
Last visited
Everything posted by AnotherLurker
-
Help/Support iFile 9.3.3 doesn't show Application names
AnotherLurker replied to Beni022's topic in Help & Support
Use Filza -
Uninstall AppSync Unified from hackyouriphone repo
-
Patcher Gangstar Vegas 2.6.0 +8 Cheats!
AnotherLurker replied to Goggwell's topic in Free Jailbreak Cheats
Bad Good Job -
Entering
-
I thought you stopped hacking Good job though
- 163 replies
-
- 20
-
-
-
-
-
-
Working perfectly!
-
Introduction Hello, iOSGod Community
AnotherLurker replied to Extraordinare's topic in Member Introductions
Hell-o -
Grand Theft Auto Liberty City Stories 1.13
AnotherLurker replied to NitroxicDemon's topic in Coding Center
-
General Easiest way of finding arm64 offset from armv7 offset?
AnotherLurker replied to Rook's topic in General Talk
Yea that would work. As you can imagine, the more simple instructions, the better your chances of finding the arm64 locations -
General Easiest way of finding arm64 offset from armv7 offset?
AnotherLurker replied to Rook's topic in General Talk
It's not that simple. Unless they're simple instructions like add/sub, you won't be able to do that. Branches for example depend on offsets, which are much different, and it's highly unlikely there may be some guaranteed difference in the offsets from 32-bit and 64-bit. -
General Easiest way of finding arm64 offset from armv7 offset?
AnotherLurker replied to Rook's topic in General Talk
There really isn't much if you don't have strings. The only tool you have at your arsenal is comparing the 2 architectures. When programming an application, the same code is being converted into both armv7 and arm64, so if you compare those 2 (arm64 has some different instructions, but they do the same things), you should be able to find your way around -
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?
-
General [showoff]Modern Combat 5 v2.0.0 Semi-Aimbot
AnotherLurker replied to a topic in General Talk
No reaction since the content is hidden -
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
-
Did you follow my tutorial?
-
Hack PokeFarmer: 1.0 Build 86 by Mila432
AnotherLurker replied to ipaarchive.com's topic in Other Cheats
Ok -
Help/Support how to use ( if ) command After -(id)
AnotherLurker replied to iP3S1M's topic in Help & Support
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 -
Help/Support how to use ( if ) command After -(id)
AnotherLurker replied to iP3S1M's topic in Help & Support
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 -
Introduction Farewell my friends
AnotherLurker replied to NitroxicDemon's topic in Member Introductions
Bye -
Help/Support theos is miserably for me
AnotherLurker replied to Taylor Meyer's topic in Help & Support
You don't need that if you're using the new theos: https://www.github.com/theos/theos -
Help/Support theos is miserably for me
AnotherLurker replied to Taylor Meyer's topic in Help & Support
FreedomCheats_LDFLAGS = -Wl, -segalign, 4000 in your makefile I've been programming for 2 years -
Help/Support theos is miserably for me
AnotherLurker replied to Taylor Meyer's topic in Help & Support
@@Taylor Meyer You don't either LDFLAGS or CFLAGS in your project