-
Posts
124 -
Joined
-
Last visited
Everything posted by Affe2626
-
Watchpoints doesn't work in GDB either, for me atleast Oh, just realized you weren't talking about watchpoints, oops. Read too fast
-
thanks
-
Creative Destruction v1.0.181 - Under the Map ARM64 Offset
Affe2626 replied to Joka's topic in Coding Center
ty ty -
Uses the same old method. Just made a tweak since LocalIAPStore had problems when the 11.1.2 jailbreak got released.
-
np What do you need help with? I don't know if Filza works for iOS 11.3.1 so download WinSCP on your PC or Cyberduck for macOS. Then connect to your phone https://www.iphonefaq.org/archives/971438. Place the deb in "/" and rename it to freeiap.deb. Then press https://imgur.com/a/qCEDfJv and do "dpkg -i /freeiap.deb"
-
Cydia iGameGuardian Cheat Engine Updated to Support iOS 11.3.1!
Affe2626 replied to Rook's topic in General Cydia
Works fine for me, yeet! -
Good, ty for testing.
-
Yeah it can be because it's cracked. IIRC it didn't work for me when I used Plague Inc. cracked. I Just downloaded it from App Store and it works for me, everything unlocked ? Try Hill Climb and tell me if it works, else something's wrong with my cheat.
-
It was a tutorial but I changed the method from manually injecting a dylib into games to just having a hack which always works. It should be on but it doesn't work for every game. Tested it on Hill Climb Racing and Plague Inc. Try those and report back if it doesn't work!
-
Yeah, just got my MacBook too. Now it won't just be you who releases aimbots for iOS
-
thanks, thanks, thanks, thanks, thanks, thanks, thanks, thanks, very thanks. I've been waiting for this. 11.3.1 now though ?
-
Requesting again since it's been 18 days. @DiDA Requested Award: Bronze Reputation Award, Silver Reputation Award & Coder Proof: Reputation awards: look at my reputation. For Coder, I don't know, give me a challenge in C++ and I'll prove it I guess.
-
Done! Thought it'd go faster.
-
Requested Award: Bronze Reputation Award, Silver Reputation Award & Coder Proof: Reputation awards: look at my reputation. For Coder, I don't know, give me a challenge in C++ and I'll prove it I guess. @DiDA I have 496 as of now but I'll request Silver Reputation Award anyways, I 'll probably have 500+ when someone sees this lol.
-
EDIT, saw that I've already replied to you. Lol
-
Oh then I understand. Thought you made a gimmicky app without any purpose what so ever except for a few ppl who can't use a terminal/Filza XD. I've never used iGMM's so I didn't know you had APMenu files.
-
Not trying to be mean but what's the difference between this and "dpkg -i something" + "killall -9 SpringBoard" / just using Filza or iFile? Feels kinda weird to have an app if you already got Filza and a terminal.I may just be retarded, quote me on that one, thanks.
-
Anyone got this working for iOS 11? I don't want to screw up my device lol
-
Hello, I want to share my memory manager for iOS, it can read and write from memory, sharing it because I haven't seen anything else that lets you read memory and it's also nicer to have a templated function so you can pass a struct with 5 ints instead of having to call write_mem 5 times (CPU and code efficient) . 1. Create a file called memoryTools.h(doesn't matter what you call it) and paste the source to that file. 2. Place it in theos/include 3. Include it in your cheat with "#include <memoryTools.h>" [Hidden Content] Usage: write_mem<data_type>(address, whattowrite, size(IF LEFT OUT, IT WILL USE sizeof(data_type)); data_type variable = read_mem<data_type>(address); You can pass whatever data type you want to the function so if you'd want to make a teleport cheat you could easily write a Vector3 to where your position is in memory. Saving current position could also be done with read_mem<Vector3>. Masskill aimbots can be done by looping through all enemies and placing them infront of you. struct Vector3 { public: float x; float y; float z; } Vector3 my_pos; Vector3 teleport_pos; teleport_pos.x = 123; teleport_pos.y = 123; teleport_pos.z = 123; write_mem<Vector3>(get_slide() + localplayer + position_offset, teleport_pos); //Teleports you to (123,123,123) my_pos = read_mem<Vector3>(get_slide() + + localplayer + position_offset); //Saves your location to my_pos Example: #import <memoryTools.h> #import <Foundation/Foundation.h> #import <UIKit/UIKit.h> #import <substrate.h> %ctor { port = mach_task_self(); write_mem<int>(get_slide() + 0x100AF9654, CFSwapInt32(0x0ED0671E)); write_mem<int>(get_slide() + 0x100AF87AC, CFSwapInt32(0xE803679E)); } //Final Fantasy Awakening hack. https://iosgods.com/topic/65503-final-fantasy-awakening-en-v1134-arm64-god-mod-damage-offset/ @intell Used your hack as an example, should be fine as you uploaded it? Tell me if not. IMPORTANT NOTE: Before contacting me and saying "this sh!t isn't working watdefuk". Look at the example above, you need to add slide to offset and if you're writing bytes you need them in reversed order (if I remember correctly), so you need to use CFSwapInt16/32/64. https://developer.apple.com/documentation/corefoundation/1425262-cfswapint32?language=objc I could've included it but when writing an integer to let's say health you wouldn't want to do it.
- 58 replies
-
- 109
-
-
-
-
-
-
-
Yeah, inject_criticald is located at /electra/ now. Same with SBInject->TweakInject. yes, exactly
-
==> Preprocessing Tweak.xm… ==> Compiling Tweak.xm (arm64)… ==> Linking tweak KaninsSBTweaks (arm64)… ld: file not found: /usr/lib/system/liblaunch.dylib for architecture arm64 arm64-apple-darwin14-clang-3.9: error: linker command failed with exit code 1 (use -v to see invocation) /opt/theos/makefiles/instance/library.mk:32: recipe for target '/home/Kanin/kaninssbtweaks/.theos/obj/debug/arm64/KaninsSBTweaks.dylib' failed make[3]: *** [/home/Kanin/kaninssbtweaks/.theos/obj/debug/arm64/KaninsSBTweaks.dylib] Error 1 /opt/theos/makefiles/instance/library.mk:32: recipe for target '/home/Kanin/kaninssbtweaks/.theos/obj/debug/arm64/KaninsSBTweaks.dylib' failed make[2]: *** [/home/Kanin/kaninssbtweaks/.theos/obj/debug/arm64/KaninsSBTweaks.dylib] Error 2 /opt/theos/makefiles/instance/library.mk:24: recipe for target 'internal-library-all_' failed make[1]: *** [internal-library-all_] Error 2 /opt/theos/makefiles/master/rules.mk:106: recipe for target 'KaninsSBTweaks.all.tweak.variables' failed make: *** [KaninsSBTweaks.all.tweak.variables] Error 2 pls halp @DiDA EDIT: Got it working with this: https://app.box.com/s/1abpis0ztjd3kwoohoft0rpvtjncw9d3 SDK Thank you so much @heinekenpsx!
-
You need to specify PID of application, not app location. Get it by ps -A. Test it. Seems to be working with LocalIAPStore (googled it) so probably if the dev hasn't updated it to not use StoreKit.
-
Yeah, I can make one. However, I've never really made/edited one so it may be bad as f*** lol
-
There probably is but this works just fine. You only need to sign the binary once then just inject with criticald. Should be working for all apps, yes.
-
Ooh I forgot to link bfdecrypt, this thread? . And yea sure. I know how to reverse and serveral hooking methods on Windows but that 64bit arm assembly fks my brain (but I can learn probably). MSHooking is just swapping the vtable of interface/class and in your hacked table you change the methods, right?