Jump to content

Goggwell

Senior Member
  • Posts

    2,274
  • Joined

  • Last visited

Everything posted by Goggwell

  1. Goggwell

    Request

    There is no such thing, although there is that Lottery hack that you can use if you are in the US and you are a VIP member
  2. Hey guys, I wanted to share my information of MSHook with you so that you can hack many other games that cannot be hacked with Save or MS. Requirements: Steps: 1. Create a new project on your iPhone/iPad (the project is a tweak; if you don't know how to do this step, please refer to http://iosgods.com/topic/831-tutorial-how-to-hack-using-mobile-substrate-method-hooking/ DO NOT CLOSE MOBILETERMINAL! We will need this in a later step 2. Open iFile, locate your Tweak.xm and open it. Now add these lines to the beginning of your code: #import <CoreFoundation/CoreFoundation.h> #import <substrate.h> #import <Foundation/Foundation.h> After that, you can either add this code: __attribute__((constructor)) void DylibMain(){ } or this code: %ctor{ } After doing that, add this code between the curly brackets (make sure that the first curly bracket is below your first code, the code below under the first bracket, and the last curly bracket under the code below) : MSHookFunction((( *)MSFindSymbol(NULL, "")),( *)$,( **)&old ); Here is the code altogether: #import <CoreFoundation/CoreFoundation.h> #import <substrate.h> #import <Foundation/Foundation.h> __attribute__((constructor)) void DylibMain() { MSHookFunction((( *)MSFindSymbol(NULL, "")),( *)$,( **)&old ); } Don't worry if this is confusing, this will all be explained later. 3. Open IDA and use the binary of the game that you want to hack (I will be using MinecraftPE). Make sure the binary is cracked. We do not want to deal with a regular binary. Now what we do now is search for the function we want to hack. If you're used to MS, the function would normally look like -(int)coins or something like that. Here it's different. As you can see, there are many functions that look like Textures:: or __ZNSt3 and stuff. What we want is something like Health or Instant Kill. So search for Player:: To search, press ALT + T (make sure you click on the functions part first) Sometimes, when we search that function, the things that we are looking for aren't there, so we need to extend the search from Player:: to something else. Try searching for something like Player::is or Player::get Once you have found the function you want, double click on it. (NOTE: the function doesn't have to start with Player::get, it can be Player::hurt or something else) You should be brought to a different page on the other part of the IDA screen. Find the symbolic name of the function, which normally starts with __Z Now, the symbolic name we just found will be your SymbolicFunction, which is __ZN6Player4hurtEP6Entityi in our case. Go back to the Tweak.xm and locate the line with the word MSHookFunction in it. Replace that code with this: MSHookFunction(((type of function*)MSFindSymbol(NULL, "yourSymbolicFunction")),(type of function*)$yourSymbolicFunction,(return type of function**)&oldyourSymbolicFunction ); Which in our case looks like this: MSHookFunction(((int*)MSFindSymbol(NULL, "__ZN6Player4hurtEP6Entityi")),(int*)$__ZN6Player4hurtEP6Entityi,(int**)&old__ZN6Player4hurtEP6Entityi); If you can't find the type of function, just deduce what it is if the type is not given to you in the function itself: - BOOL types are normally found in functions that have Can in it. For example, "CanDie" - INT types are found in functions that have Get in it or simply the term, like "getWalkingSpeedModifier" or "getArmorValue" - VOID types are found everywhere. But you can simply change it to an INT or BOOL just by reading what the term says. If a void is found in something like "Player::isInWall" then you can just change it to a BOOL because it is a True or False function. 4. Add this code to the beginning of the Tweak.xm, just below the #import lines: type of function (*oldyourSymbolicFunction)(); Which is this (as explained earlier) : int (*old__ZN6Player4hurtEP6Entityi)(); Then add this after the code we just wrote earlier: type of function $yourSymbolicFunction() { return //whatever you want; } Which is: int $__ZN6Player4hurtEP6Entityi() { return 999999; } There is also a complex code which can replace the code above if you want, but I'd rather you stick to the code above. The complex code looks something like this: int $__ZN6Player4hurtEP6Entityi() { if(ida_hack2) { return 999999; } else { return old__ZN6Player4hurtEP6Entityi(); } } 5. If you wish, you can add a UIAlertView to test if the hack is working. If it is, the UIAlertView popup will appear on your game. Just find the AppDelegate in Flex (normally applicationDidBecomeActive or applicationDidFinishLaunching) and use this code (replace the parts necessary) : %hook APPDELEGATE - (void)applicationDidBecomeActive:(id)fp8 { %orig(); UIAlertView *alert = [[UIAlertView alloc]initWithTitle:@"Hack Works" message:@"Hack working. Please thank Goggwell, because he is awesome XD" delegate:nil cancelButtonTitle:@"+1 BRAH!" otherButtonTitles:nil]; [alert show]; [alert release]; } %end Make sure to add this code in your Makefile underneath "NameOfProject_FILES = Tweak.xm" NameOfProject_FRAMEWORKS = UIKit Just compile your project after saving your project and install the hack. Run the game and see if your hack works NOTE: Some games will crash if there is a UIAlertView. So just make the hack without a popup if you can. Here is the binary used: https://www.dropbox.com/s/bne9uou9agphp9g/minecraftpe.zip?dl=0 Have a great day!
  3. Hi Diddo on iSpongebob's post
  4. Write down below what you guys think of me :D

    1. Show previous comments  4 more
    2. DeathFork
    3. Zahir

      Zahir 

      Hmm by your name . A cnut

    4. jake187

      jake187

      Smart ass who loves to hack :D

    5. ImICanHasHacks

      ImICanHasHacks

      But that name tho... (Jk)

  5. LLDB is basically like GDB, just with a Mac, and there are different commands. Just learn GDB first by reading ZahirSher's TUT and then study up on LLDB once you get the hang of GDB
  6. Of course It's just that my internet is slow and my phone is too slow as well.
  7. THANK YOU SO MUCH!
  8. Ok Thanks
  9. Well thank you if you do give me the binary
  10. I won't hack it and post it. I just want it to test if my hack works. You make the hack and post it
  11. Can I please have the binary?
  12. So for some reason, it won't let me download any games, nor will it let me install cracked ones. So can someone please supply me with cracked binaries of games that I need? I'll leave a list down below in case you're wondering which game to use: I need: - Real Racing 3 (Cracked Binary) - Minecraft PE (Cracked Binary) - Terraria (Cracked Binary) Thank you for your time! This thread will be updated every week with new games that I need.
  13. Happy Halloween everyone!

  14. I really want to see your portfolio It would probably astound me
  15. I can make tutorials for iOS with this! Thanks for the find
  16. OIC Nice I should've gotten inspiration for my username at a deli, or a sandwich shop, or a fast-food place.
  17. The title says it all I want to know how you guys came up with your usernames. There HAS to be a story behind why you chose that particular name (especially for those people who have one-word usernames that do not make such good names IRL, like mine). My username story is: When I was about 8, I stumbled upon this game called AdventureQuest. I read the description. It looked SERIOUSLY FUN, so I decided to play it for a while. I noticed that one of the hardest monsters in the game was called a Gogg. The name itself seemed cool at the time, so I decided to call myself 'Gogg'. But that username was already taken While this was going on, a random trivia question popped up on my screen. It asked me if I wanted my steak 'well-done'. Well. Hang on a minute... Gogg... Well... Goggwell! And that's how I got my name
  18. Game release date = 3 weeks :D

    1. AnotherLurker

      AnotherLurker

      hack release date = 5 minutes :D

    2. FuroowHD

      FuroowHD

      @HATER 3 weeks and 5 minutes*

       

  19. I recommend rebooting again, just to make sure
  20. Oh, this thread is already closed. Forgot to lock it You can post your own section (Love your work BTW)
  21. HBK is undoubtedly the best. Nobody can beat him. Because he started all of this Where is he now? Probably sitting down somewhere wondering why he quit hacking in the first place.
  22. Sorry, I'm typing this from my iPhone. So, as the title states, are there any legendary hackers that any of you guys know? I know of a few: HBK (The true legend) Mila432 (or MilaOne) - Super Beast Razzile (epic/GitHub beast) That guy who invented the Subx LUA compiler (for games like Fun Run) So, um, yeah. Anyone else know?
  23. It's my birthday in 10 months

  24. Goggwell

    Novice

    I have school too
×
  • 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