Possible Duplicate:
Best .NET obfuscation tools/strategy
Hi, How can i at source-code level protecet/obfuscate .net code?
Thanks
|
1
|
Hi, How can i at source-code level protecet/obfuscate .net code? Thanks |
||||
|
closed as exact duplicate by Bevan, silky, Ngu Soon Hui, dmckee, Cameron MacFarland Oct 10 at 8:42 |
|
|
Using code obfuscating tools. Obfuscating won't protect the code from being re engineered. There are a list of obfuscators in the following page .NET code protection and obfuscators See also this SO question Best .NET obfuscation tools/strategy Edit: If you are looking for free softwares then this question might help you. |
||||||
|
|
|
Try Dotfuscator, I believe there's a community version distributed with VS Pro or above. |
||||
|
|
|
You can protect your assemblies from modification with the assembly signing tools (sn.exe, etc). If you are using Visual Stuido, you can obfuscate your code using the bundled Dotfuscator application. |
||||||
|
|
|
Try CliSecure, it's free and offers various obfuscation methods such as: entity renaming, control flow obfuscation, string obfuscation, cross assembly obfuscation. The basic package is free & support all the feature I've mentioned. |
|||
|
|
|
|
Also take a look at Crypto Obfuscator. Its affordable (dont know if you only want free options) and offers many protections including symbol renaming, control flow obfuscation, string encryption, resource encryption, assembly merging, msbuild support, etc |
|||
|
|