Posts

Showing posts from September, 2017

Python reverse bytes of file

Image
Developers like to troll us by reversing whole bytes of DLL file so we have a python code to reverse back to original. Thanks to hokage242 for his simple code open('name_of_your_file.dll','wb').write(open('name_of_your_file.dll','rb').read()[::-1]) Download Python: https://www.python.org/ Create a .py file and add this code, edit, save and execute. Done. Before: After:

How to make mod menu for Unity Games using PMT Menu Maker

Image
PMT Menu maker is an easy-to-use library that does all the necessary calculations and coding for the modder, without requiring C# or Unity knowledge. Visit PlatinMods for more infomation https://platinmods.com/threads/platinmods-how-to-make-mod-menu-menu-maker-for-unity-games-v1-0-public-version.2748/ If you want to learn the basics, please read Unity scripting guide:  https://docs.unity3d.com/ScriptReference/GUI.html My version of tutorial how to make mod menu from scratch is coming soon

How to decrypt DLL files using GameGuardian (root only) (Android 2.3.3-8.0+)

Image
You can dump memory using GameGuardian to extract encrypted file using get_dll_from_bin tool or Winhex. GameGuardian works on ARM, x64 and x86 devices, including x86 emulators (BlueStacks, Droid4X, Koplayer, Andy, Nox, Memu, Leapdroid, AMIDuOS, Windroye, RemixOS, PhoenixOS, AVD, Genymotion etc.) Requirements: - GameGuardian - get_dll_from_bin.exe - Rooted device or emulator. - Minimum system requirements for Android device: 1 GB RAM, 2 cores CPU. If you have a low-end device, your device may freeze during dumping. - Available free space of Internal storage or Sdcard: 2+ GB - Requires Android 2.3.3+ (Gingerbread) and up to 8.0 (Oreo) Instructions: Download GameGuardian ap and install it on device or emulator Download get_dll_from_bin.exe and use it later Install GameGuardian APK on device or emulator. It's very easy If you are using emulator that supports shared folder and allows you to changed path of shared folder, please change it. Example in

[iOS] How to dump Il2Cpp-based Unity Games to find functions + offsets to hack (Experimental)

Image
As requested, here is the tutorial how to dump il2cpp of iOS Unity games. With Il2CppDumper, it will be much easier to find useful functions and offsets to hack. No need to waste your time debugging the game. Requirements: - ARM/ASM knowledge - IDA hacking experience - IDA Pro. Download link - 64-bit based computer is required if you work with 64-bit hacking - Notepad++. Download link - Il2CppDumper (Windows). Download link - Clutch or Rasticrac for jailbroken devices or visit appvn.com to download latest cracked free games - Winrar or 7-zip to open .ipa file Instructions: Download Il2CppDumper released version by Perfare and extract the program To open .ipa file, simply rename file extension to .zip and open it If you are using 7-zip, right click -> 7-zip -> Open Archive to open .ipa file directly Navigate to \Payload\<app or game name>.app\ and extract the big binary file that doesn't have file extension Navigate to \Paylo

IDA Pro hacking tutorial collections for iOS and Android

Here are all the collections of IDA Hacking tutorials. Some websites may require registration to view the content Forums iOSGods How To Hack Using IDA by EvillyG00d https://iosgods.com/topic/852-tutorial-how-to-hack-using-ida/ IDA HACKING TUTORIAL! #1 by ZahirSher https://iosgods.com/topic/660-tutorial-ida-hacking-tutorial-1/ IDA Hacking Tutorial #2 by ZahirSher https://iosgods.com/topic/1469-ida-hacking-tutorial-2/ IDA Hacking Tutorial #3 by ZahirSher https://iosgods.com/topic/1470-tutorial-ida-hacking-tutorial-3/ [IDA Tutorial]How to deal with/hack vectors by shmoo https://iosgods.com/topic/7885-ida-tutorialhow-to-deal-withhack-vectors/ How to Hack with Strings by shmoo https://iosgods.com/topic/26584-ida-tutorialhow-to-hack-with-strings/ How to Hack Vectors by shmoo https://iosgods.com/topic/7885-ida-tutorialhow-to-deal-withhack-vectors/#comment-211260 How to Disable Anti-Debugging Protection by shmoo https://iosgods.com/topi

How to find ZIP password inside APK file

Image
I'm just showing you that protecting contents using ZIP password isn't a good idea. I was able to extract music files from password protected ZIP/OBB file of japanese rhythm games Requirements: ·          apktool.jar or APK Easy Tool ·          IDA Pro ·          Notepad++ Steps: 1.   Decompile the APK file using apktool.jar or GUI version, APK Easy Tool 2. Open Notepad++. Click Search -> Find in Files and Search "password" or "zippassword" in the whole decompiled APK folder 3. As in rhythm games, the "password" found in .js and .so file. js is just javascript that shows webpage. we are looking for .so file 4. Disassemble the .so file and search "zippassword". You will find the password immediately 5.   Open ZIP/OBB using 7-zip or Winrar and input the password. Done and enjoy! Credits: iAndroHacker