-
Notifications
You must be signed in to change notification settings - Fork 264
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How to Deobfuscate a game that has Il2Cpp ? #5
Comments
You need to learn ASM and use a tool like IDA-Pro or ghidra. |
So is there a way? because im not willing to try if it doesn't.. like. i don't want to waste time and in the final not to work. |
Yeah, although it will be difficult. |
But there is software that can do that? or? sorry for late comment |
You would need to use a tool like IDA or ghidra, These tools are far from perfect though and they have a very steep learning curve. |
You can use Perfare's IL2CPP dumper, which will dump the symbols and metadata (which is extremely useful, when you have to RE) and then use ida and run the provided script by the dumper which will name all your subroutines, after that you have to reverse engineer the actual implementations yourself. |
yeah there's no deobfuscation, it's just not C# anymore |
technically its not obfuscated but rather compiled to native instead of managed .net |
Is De4Dot Usefull for deobfuscation? Ok i need a little help with Ghidra.... |
I would like more easyer talking on discord |
|
I did change my name because it was kicking me from another discord server NGeorge 0733 And for god sake i im not trying to hack a game. |
Are cheaters using GitHub now? interesting, no one's going to help u btw figure it out on your own. |
There are many reasons to deobfuscate a game other than cheating you realise? People might want to make mods for a game or just see how it works. Just take minecraft for example a game that is probably like 99% decompile, while there is a few cheats hanging around there is pleanty more content that is just harmless mods which add to the game. |
I do more or less what I am reproaching, but... The kind of comment that @UnknownAMD made is useless. If you don't want to help. Don't help. You don't need to express yourself on a subject you don't know anything about. Even if it was about cheating, there nothing immoral about it. It's contextual. Like @GlowingUmbreon said, there is many more reasons to reverse-engineering a game, or more widely, a software. It could be for datamining, to learn more about how a game or a soft works, create mods, fix and community patch. The reasons why reverse-engineering is useful and SHOULD be learned an taught
Reverse-engineering is a really time-consuming task, most of the time executed by passionate and enthusiasts people. Sorry for going a little bit off topic. |
i need help with this too, i maded a dump of a game with il2cpp dumper, and tried to understand the logic to check vulnerabilities, but its criptografed. My discord is Sanjey#5106 |
It's been a while, but Cpp2IL can now attempt to generate IL from the assemblies and save them to the generated dlls. They can then be viewed in tools like ILSpy. It's very unstable right now, but it works and seems to be getting better and better. |
I tried to deobfuscate a game that has Il2cpp with
il2Cpp Dumper [extract all the dlls from UnityPlayer.dll]
.Net Reflector 10.2 [Extract all the C# code from dlls]
De4Dot [Deobfuscator for all the C# ] idk if this works
but for some reason it didn't worked to deobfuscate it.... so i think this is my last chance here.
is there a way to deobfuscate a game that has [Obfuscator And Il2Cpp ] ?
The text was updated successfully, but these errors were encountered: