vote up 0 vote down star
1

Possible Duplicate:
Best .NET obfuscation tools/strategy

Hi, How can i at source-code level protecet/obfuscate .net code?

Thanks

flag
Check the edit to my answer if you are looking for free tools. – adamantium Aug 14 at 9:28
Please use search. This has been asked numerous times. – Brian Rasmussen Aug 14 at 9:50

closed as exact duplicate by Bevan, silky, Ngu Soon Hui, dmckee, Cameron MacFarland Oct 10 at 8:42

5 Answers

vote up 1 vote down

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.

Free obfuscation tools for .Net

link|flag
1  
Why was this downvoted? The link provides a fairly comprehensive list of products. Also, if someone wants to reverse engineer badly enough, they will succeed. – Thorarin Aug 14 at 9:23
The original version of the comment just said "Using code obfuscating tools"... hardly helpful, it was then apparently edited to be more useful. – Lazarus Aug 14 at 10:18
vote up 0 vote down

Try Dotfuscator, I believe there's a community version distributed with VS Pro or above.

link|flag
thank you for answer, but it is not a free, i need free way. can you help me? – Armen Khachatryan Aug 14 at 9:22
If you really need to protect it (i.e. it's worth money to you) then I'd suggest that you will need a commercial product to achieve that. To get the kind of protection level you seem to be looking for then I suspect you'll be into the realms of Hasp (aladdin.com/hasp/default.aspx). – Lazarus Aug 14 at 10:23
vote up 0 vote down

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.

link|flag
yes, i use VS but VS Dotfuscator only changes function/method names, and having .exe others can see code, i want that nobody can not see code(c#), is it possible? – Armen Khachatryan Aug 14 at 9:33
If you are asking whether it's possible to prevent somebody decompiling your EXE into code, I'm afraid there is no way to do this. An obfuscater like Dotfuscator will make it much harder to understand the decompiled code, but if somebody wants to reverse-engineer your code badly enough, they can still do that. Sorry if that's not what you wanted to hear. – Programming Hero Aug 14 at 9:45
yes i dont want to hear just that :) very thanks for info, and what about encrypting .exe file ? – Armen Khachatryan Aug 14 at 10:26
vote up 0 vote down

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.

link|flag
vote up 0 vote down

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

link|flag

Not the answer you're looking for? Browse other questions tagged or ask your own question.