Wanted a tool for decompiling obfuscated .NET code

大憨熊 提交于 2019-12-18 12:44:08

问题


I need a tool to decompile obfuscated .NET code. Yes, I know about Reflector and its plugins (FileDisassemble, FileGenerator). But they create VS project which won't compile.

For an example the decompiled code contains: private sealed class d__0 : IEnumerator, IEnumerator, IDisposable { private int <>1__state; private int <>2__current;

I need a tool which could rename automatically such name into readable (read "compilable") form. Thnx.


回答1:


Salamander .NET Decompiler

Xenocode Fox




回答2:


I've been able to disassemble and re-assemble most anything with just ildasm and then .Net Reflector for viewing. Reflector seems to handle all sorts of filenames without any issue.



来源:https://stackoverflow.com/questions/1226695/wanted-a-tool-for-decompiling-obfuscated-net-code

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!