Jump to content

Ted2

Senior Member
  • Posts

    4,939
  • Joined

  • Last visited

Everything posted by Ted2

  1. Offset - Hacked Hex @"k01":@{ @"offsets": @[@"0x1010C5F0C", @"0x1010C5FCC"], //Offsets @"patched": @[@"0x00F0271E", @"0x09F0271E"], //Patched Offsets @"desc": @"You can't die", // Short feature description appears when you long press @"label": @"Godmode" },
  2. Installed using iTunes? make sure u 'su' 'password' too
  3. LSR Logical Shift Right. This instruction is a preferred synonym for MOV instructions with shifted register operands. STP Store Pair of Registers. AND, ORR, EOR, BIC, and ORN Logical AND, OR, Exclusive OR, Bit Clear, and OR NOT. The AND, EOR, and ORR instructions perform bitwise AND, Exclusive OR, and OR operations on the values in Rn and Operand2. Don't ask me what it means, I never had to use one of those instructions to hack something. Source: http://infocenter.arm.com/help/index.jsp?topic=/com.arm.doc.dui0489f/Cihdafai.html You may change STR W9, [X0,#0x78] to STR W23, [X0,#0x78]
  4. PM
  5. If I have a opportunity to skip school tomorrow, I'll update
  6. Luckypatcher didnt even workcfor me
  7. Bypassing the limited beta screen if you didn't figure that one out yet: https://iosgods.com/topic/65627-bypassing-google-license-check-harry-potter-hogwarts-mystery-example-smali/
  8. Hi, I saw that people commented in the request of the game about the fact they weren't able to play the game due the Beta Limited. I was pretty sure it was just a simple license check, so I thought let's show you guys how to disable it Requirements: - Apktool (or any tool where you can decompile the apk with) - A text editor which can read smali files (sublime, notepad++ etc) Alright so it's pretty simple & is always the same file (from my experience) Go to: /smali/com/google/android/vending/licensing/LicenseValidator.smali or /smali_classes2/com/google/android/vending/licensing/LicenseValidator.smali --> Some apps have 2 classes.dex files nowadays Open that file in your text editor. Search for 'handleRespone' as a method: Now inside this method, 'mPolicy' & under that you see 'allowAcces()Z' --> ()Z means BOOLEAN in smali Now you can bypass the license check in two ways: 1. Return allowAccess to true (0x1) 2. comment out the jump (if-eqz v0, :cond_0) I prefer option two, since I don't have to type 2 lines of code How it should look like after patch: Original Code: Patched Code: Hope you learned something Credits: - @Ted2
  9. Good tut, will help lots of people
  10. Make a tutorial for the people who can't, if you don't mind!
  11. Can't wait to read it
  12. Idk, I never tried his code
  13. Config.h file is likely included into the tweak.xm, which means you either have to have that file in your project folder OR in your theos/include
  14. You can't look up the address from igg into IDA. You need to use lldb to find the IDA offset. You find that using the igg address. See tutorial section so you can better understand.
×
  • 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