Jump to content

Miscellaneous files/tools.

8 files

  1. Cheat Engine server

    A simple utility that allows you to run ceserver binaries for different architectures. Both with root and without.
    Theoretically, you can use the Cheat Engine in virtual space without root.
    All binaries are taken from the official Cheat Engine website:
    https://www.cheatengine.org/downloads.php
     
    Unfortunately, they contain errors in processing the command line, so command line options will not work. Although the application itself has their support.

    1,319 downloads

       (2 reviews)

    5 comments

    Updated

  2. DBG server

    A simple utility that allows you to run debugger server binaries (GDB, LLDB, Frida, IDA) for different architectures. Both with root and without.

    131 downloads

       (1 review)

    0 comments

    Submitted

  3. GG Fixer 64-bit Virtual Space

    A utility to fix the work of GG in a virtual 64-bit space.
    At the moment, it is precisely confirmed that corrects the work of GG in Paralell Space 64-bit.
    How to use:
    1. Install.
    2. Add to virtual space.
    3. Run in virtual space.
    4. Uninstall.
    After that, GG should work normally in 64-bit virtual space.
    Video:
    96.0: Fixed work in some 64-bit virtual spaces - GameGuardian (#4nbtc2mg)  

    3,735 downloads

       (2 reviews)

    2 comments

    Updated

  4. Virtual Backup

    A simple utility for moving application data from one virtual space to another.
    The application needs to be installed in both virtual spaces. Make "Backup" in source virtual space, after that "Restore" in destination virtual space.
    For example, in the video showed the transfer of the Dungeon Village game data from Parallel Space to VirtualXposed.
    Moving application data between virtual spaces - Virtual Backup (#4b4lznni)
    Source code: https://github.com/Enyby/VirtualBackup
    Download: https://github.com/Enyby/VirtualBackup/releases/latest
     

    2,895 downloads

       (1 review)

    2 comments

    Updated

  5. UnLuac (decompile binary scripts)

    Lua in GG is based on LuaJ 3.0.1, so you can try to decompile the script from a binary form for show its code.

    However, GG is developing. Also, Lua is being modified in it, so that such scripts can not always work, or not work at all.

    If you experience problems with binary scripts, use the text form of the script.

    There is no support for the binary form of scripts and will never be. You do everything at your own peril and risk.

     
    java -jar unluac_2015_06_13.jar script_compiled.lua Examples are provided for the Windows command line. If you have Linux or Android, then this is your problem how to run a .jar file there. Do not ask me about it.
    You must have java installed. It should also be available on the command line. In general, this is also your problem how to run the .jar file.
     
     

    13,837 downloads

       (3 reviews)

    13 comments

    Updated

  6. Mono Toolkitten

    Mode: Rooted & Non rooted
    Current version: 0.9 - Beta

    Description:
    Mono Toolkitten is an advanced external injector for mono backend games.
    This project aims for runtime injection on the fly, such as dumping and injecting & invoking dlls without to modify the apk.
    The injector is currently in beta phase.

    Features:
    - Dumping dlls, best for dumping encrypted dlls.
    - Plugin system (Inject external dlls) [coming soon]
    - Neat self logcat
    - Cute user interface (-:

    Support:
    -ARM & x86 (Works for emulators too, tested on memu & nox)
    -Android 5.0 and above

    How to use (Root):
    1- Launch Mono Toolkitten, grant permissions and then the overlay kitten icon will appear.
    2- Now return to home screen and lunch your target game.
    3- Click on kitten icon and you should see running mono processes, choose your target game and pick any function you want.
    How to use (No Root):
    1- Download your favorite virtual space from gameguardian > Link <
    2- Launch your virtual space app then add Mono Toolkitten and your target game to it.
    3- Launch Mono Toolkitten within your virtual space app, then the overlay kitten icon will appear just like gameguardian.
    4- Now return to virtual space app and lunch your target game.
    5- Click on kitten icon and you should see running mono processes, choose your target game and pick any function you want.

    -Inside Mono Toolkitten app there is 3 sections:
    1- Home (Welcoming page)
    2- Logcat (Shows logs of the application, mostly for injections)
    3- About (blah

    Notes:
    -For virtual space users, the dump files will be generated inside the virtual app storage.

    -For dumping encrypted dlls, I have noticed some developers also remove or mess up the dll header, so if the dumped dll still can't be opened then check the header and fix it yourself.

    -The dlls dumper is open source on [Github], if ptrace failed then you can simply compile the lib and make necessary changes to the apk to load the lib.

    -If you are on emulator and your target game doesn't appear in injections page, then check if the game has arm or x86 libs, it must be x86 if you are on emulator.

    Future plans:
    -Finishing dll injecting method
    -Package name randomization
     
    Changelogs:
    ~

    516 downloads

       (0 reviews)

    2 comments

    Updated

  7. LuaJ (Compiling scripts in binary form)

    Lua in GG is based on LuaJ 3.0.1, so you can try to compile the script into a binary form to hide its code.

    However, GG is developing. Also, Lua is being modified in it, so that such scripts can not always work, or not work at all.

    If you experience problems with binary scripts, use the text form of the script.

    There is no support for the binary form of scripts and will never be. You do everything at your own peril and risk.

    The binary form does not mean that your script can not be restored. It just makes things a little more complicated. But if you have the necessary skills, the code can be restored.

    In a binary form, there is no integrity check, so that strings can be modified by the HEX editor. For example, copyright.

    But you can encrypt the lines so that it is not so easy.

    LuaJ allows you to both compile the script into a binary form, and print the contents of the script in the form of listing the commands of the virtual machine.

    The source code of the script is not saved during compilation. So if you lose it, then it will be problematic to restore it.

    Examples of using:

    1. Compilation
     
    java -cp luaj-jse-3.0.1.jar luac script_text.lua -o script_compiled.lua
    2. Printing script commands
     
    java -cp luaj-jse-3.0.1.jar lua -p script_compiled.lua
    Examples are provided for the Windows command line. If you have Linux or Android, then this is your problem how to run a .jar file there. Do not ask me about it.
    You must have java installed. It should also be available on the command line. In general, this is also your problem how to run the .jar file.

    You can see the options available by running .jar with the -h option:
    java -cp luaj-jse-3.0.1.jar luaс -h java -cp luaj-jse-3.0.1.jar lua -h  
     

    1,106 downloads

       (0 reviews)

    1 comment

    Updated

  8. Utility for extracting .dll files from various dumps

    Description: extracts PE-files (.exe, .dll, etc.) from .bin files.
    For example, memory dumps. For example, from the one that can be obtained through GameGuardian.

    Use cases:
    1. .exe file to be placed in one folder with a .bin file (s) and run.
    2. On the .exe file, drag the folder with the .bin file (s).
    3. Write in the command line:
    > get_dll_from_bin.exe path/to/your/.bin/files   Result: In the same folder where there were .bin files there will appear .dll files if something was found.   Example of output: Usage: drag dir with .bin files to .exe. Tool scan its and extract pe files as .dll files in same folder. Author: Enyby. Used dir: dump dump/com.raongames.growcastle-00008000-0000a000.bin: dump/com.raongames.growcastle-04000000-1c106000.bin: Not valid PE header: 2e746578 dump/com.raongames.growcastle-1c179000-1c17c000.bin: dump/com.raongames.growcastle-94ebb000-95161000.bin: Make 0.dll with size 2737152 dump/com.raongames.growcastle-95169000-951ae000.bin: dump/com.raongames.growcastle-951c6000-95321000.bin: Make 1.dll with size 359424 Make 2.dll with size 878592 dump/com.raongames.growcastle-95325000-95335000.bin: dump/com.raongames.growcastle-9533d000-95583000.bin: Make 3.dll with size 309248 dump/com.raongames.growcastle-95783000-96fe2000.bin: Make 4.dll with size 1684480 dump/com.raongames.growcastle-96fe5000-97371000.bin: dump/com.raongames.growcastle-976f5000-b7756000.bin: dump/com.raongames.growcastle-b7942000-bac40000.bin: Make 5.dll with size 3072 Make 6.dll with size 9728 Make 7.dll with size 171520 Make 8.dll with size 103936 Make 9.dll with size 6656 Make 10.dll with size 10240 Make 11.dll with size 13824 Make 12.dll with size 24576 Make 13.dll with size 65536 Make 14.dll with size 47104 Make 15.dll with size 9216 Make 16.dll with size 41472 Make 17.dll with size 66560 Make 18.dll with size 44032 Make 19.dll with size 18432 Make 20.dll with size 29184 Make 21.dll with size 33280 Make 22.dll with size 175616 dump/com.raongames.growcastle-bf810000-bf831000.bin: Topic: https://gameguardian.net/forum/topic/16999-utility-for-extracting-dll-files-from-various-dumps/
     

    2,249 downloads

       (1 review)

    1 comment

    Updated


  • 113576 What virtual space do you use?

    1. 1. What virtual space do you use?


      • Parallel Space (best choice)
      • VirtualXposed
      • Parallel Space Lite
      • GO Multiple
      • Dr. Clone
      • Virtual Space
      • ES Parallel Accounts
      • NoxApp+
      • DualSpace
      • Octopus
      • AppBox
      • DualSpace Blue
      • DualSpace Lite
      • 2Face
      • Other virtual space
      • I have a root
      • Multiple Space
      • clonneapp
      • Parallel Accounts
      • APP Cloner
      • App Hider
      • Calculator+
      • Multi
      • App Hider Lite
      • Dual App
      • Phone (Dialer Vault)
      • Notepad
      • Parallel Space Pro
      • VMOS
      • Clone App
    2. 2. Do you use the Internet?


      • No, I don't.
      • Yes, I do.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.