问题
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:
- Adding garbage code, which can confuse anyone reading disassembly.
- Adding breakpoint detection code.
- Adding self modifying code.
- Doing PEB structure checks.
来源:https://stackoverflow.com/questions/5429468/how-to-protect-my-dll-from-disassemblers