How to protect my dll from disassemblers?

你。 提交于 2019-12-25 00:52:15

问题


I am trying to protect my dll from disassemblers. I am using "Eazfuscator.NET Assistant" as dll encryption tool. but after that the Reflector still can read the source code. is it anything i need to do before using Eazfuscator or after? or can anybody can introduce me a free encryption tools which it is can help me to encrypt my source code?

Thank you very much.


回答1:


You can consider .Net Reactor it works for me.




回答2:


You can try code obfuscators. Also you can try to pack your dll with software like UPX. Although it could be disassembled it will be much harder do understand what's going on in the assembly.

There are some more techniques like:

  1. Adding garbage code, which can confuse anyone reading disassembly.
  2. Adding breakpoint detection code.
  3. Adding self modifying code.
  4. Doing PEB structure checks.


来源:https://stackoverflow.com/questions/5429468/how-to-protect-my-dll-from-disassemblers

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