- Jul 21, 2018
- 1,365
- 1,953
Not at all for me but for beginners to reverse-engineering, it can be. Unity offers an "attempt" at making reverse-engineering a little more difficult by converting MSIL into x86 instructions directly via CPP intermediate compilation, all in an attempt to get away from IL which is easily decompiled back to source, even with obfuscation and protection mechanisms. As x86 routines, it's just like reverse-engineering almost all other software out there. I specialize in reverse-engineering, it makes no difference to me what it is in. Unity's IL (compiled C#) is converted to x86 via il2cpp, which quite frankly leaves a lot to be desired (in my opinion). The process requires every bit of IL metadata to be stored separately, which merely adds a step in determining the locations of any routines. If you recall C# Properties, they actually have a get+set routines to return a value. You see (example)Thx, yes the game was a bit unplayable with the freezing/soft lock. Is it hard to reverse engineering it ? I do know unity and C# but after that nothing.
public bool IsPatron;
but behind the scenes it is actually private bool IsPatron;
public bool get_IsPatron() { return this.IsPatron; }
and everything uses that function instead, they don't actually read the property itself directly, despite what the syntax makes you think. Sounds backwards, but that is how it is. Write a small test tool and use, say, DnSpy to look at the properties and such. Make sure you turn on compiler-generated code-visibility. You'll notice the properties actually have functions (compiler-generated). It can make things muddy. Anyway... Unity abstracts the actual routines of functions+gets+sets etc. away in x86, but the metadata is still there (external file) for the names of things. Just map the metadata in any tool designed to work with your debugger (or just manually do it yourself, parse it and output to a text file with offset->routinename, etc.) and walk through the logic yourself. I might modify my method of cracking to use a xor rax, rax:inc rax:ret
rather than mov rax, 1:ret
. Smaller by one byte. mov rax, rsp:ret
even more if a non-0 value will work, even smaller. I really enjoy Assembly+C/CPP rather than horrid IL or any other interpreted crap. Nerd-mode-ing. Quite frankly, Unity and Unreal reverse-engineering is a cake-walk compared to some things I've come across, but let's put this back on topic.
Last edited: