Recent content by SecretMyAss

  1. Tutorial IDA Game Hacking with Strings #1

    Unsure whichvideo this was, butI think i've some video's here: https://www.youtube.com/channel/UCcm92ugjv3X0_ABUxt0wIMQ/videos?view_as=subscriber
  2. Tutorial Substrate Hooking Template for Android

    wait fot what offsets
  3. Source Telekill - Forward Assault v1.2003 (iOS Source)

    This is a very simple example & forward assault is the easiest game I did it on. It can be modified to work on other games. Note: This is iOS source code, it can be modified to work on Android with a few things. But I can't be bothered to also check this out on android. // Don't worry to much...
  4. Tutorial Substrate Hooking Template for Android

    Then no, you'll have to use each offset for the correct platform. Your device will use the one it wants.
  5. Tutorial Substrate Hooking Template for Android

    It’s better to have only one lib in your modded apk. No one has a device that runs x86 anymore. arm64 can run armv7, aka keep armv7 & remove others.
  6. Tutorial Substrate Hooking Template for Android

    The names of those libs are the same, it will hook the one the user has. & I've never heard of it, so no.
  7. Tutorial Substrate Hooking Template for Android

    Hi, I know most of you just patch offsets directly with creating hacks, which is fine. However, sometimes hooking a function can be very useful, for example when you're trying to unlink a feature. Some time ago I made a simple template, so I thought I'd share it here. The Github link is...
  8. Solved How to bypass codestage anticheat

    Click “ok” & then see what logcat says. It might bring you to the right direction.
  9. Tutorial Hacking a game with IDA & Strings

    That’s why you use strings ;).
  10. Solved Hooking functions .so

    Oi, Do any one you have a working code for hooking functions? I tried to get Substrate working, but got errors which I wasn't able to fix. I need to hook functions in order to unlink the features, but can't seem to find any working template for it... Any help?