Tutorial Xposed Injection on Unity Games (kind of a tutorial)

fedesito

Platinian
THIS THREAD IS NOT FOR BEGGINERS.

So I haven't seen people attempt this yet and not too sure why as it's a decent workaround for most basic anti-tamper methods.

Basically from Xposed its pretty easy to call the internal loadlibrary function from the game, allowing another way to make root cheats.
Now here's the catch: while Xposed by itself is ROOT only, you can circumvent this by using tools like LSPatch, which seamlessly integrate Xposed modules without any additional hassle on apks. allowing modules to run without superuser access.

If you are rooted I highly recommend using LSPosed (zygisk) instead: Releases · JingMatrix/LSPosed (If you're running APatch or KernelSU get ZygiskNext aswell: Releases · Dr-TSNG/ZygiskNext)

Here's the GitHub repo link for a simple template if anyone wants to try it (might be broken): GitHub - fedes1to/XposedImGuiMenu: Xposed ImGui Injection for Unity Games
There are examples on how to implement Hooks, Pointers and Patches (might be different from what you're used to but I can assure you it's way easier to use).

LSPatch download (for no root users): Releases · JingMatrix/LSPatch
If you run the desktop (java) version, I recommend these values:
java -jar lspatch.jar -l 2 -m "/path/to/xposed/apk" -v "/path/to/game/apk" -f -o "/output/folder"

IMPORTANT NOTE: if anything doesn't work let me know, and also make sure to read the README file from the repository, and make SURE you only set the ABI you are targeting (usually only arm64-v8a or armeabi-v7a).

If anyone wants to make some sort of tutorial that's a bit more in depth go for it, I'm just a tad lazy for these things.
 
Last edited:
Back
Top Bottom