开发者

Protect Application from Disassembling [duplicate]

开发者 https://www.devze.com 2023-02-27 00:25 出处:网络
This question already has answers here: Closed 11 years ago. Possible Duplicate: Is there a way to prevent Reflector from being able to reflect my source code?
This question already has answers here: Closed 11 years ago.

Possible Duplicate:

Is there a way to prevent Reflector from being able to reflect my source code?

Hi all Is it possible to prevent the application that you make with your开发者_开发知识库 hard work from being disassembled. I know there is Reflector that disassembles .Net applications.

so is there any way out to protect it?


The default way is code obfuscation - a process when a special program changes names of the variables, methods and classes so the reverse engineering returns the code that is hard to understand. Visual Studio includes community edition of Dotfuscator.

You also can use other techniques, like code unpacking to hide the code from the reverse engineering.

BTW, Reflector is not a disassembler, it is decompiler.


You are looking for an obfuscator such as Dotfuscator.

0

精彩评论

暂无评论...
验证码 换一张
取 消