vote up 2 vote down star

Possible Duplicate:
Best .NET obfuscation tools/strategy

Hello,

I was wondering if there was a way to "scrable" or "encrypt" a .Net executable. Because with Reflector, everything is fully exposed! I'd like to prevent this.

Thanks

flag

47% accept rate
2  
There are decompilers for all languages. [Insert mandatory s/bases/codes/ joke here]. But in all seriousness, if someone wants to get at how you did something, it doesn't matter what language you're writting in, all you can do is slow them down. Eventually they will get to the juicy core of your program and figure it out. – Matthew Scharley Aug 21 at 13:45
duplicate: stackoverflow.com/questions/2525/… stackoverflow.com/questions/59893/… stackoverflow.com/questions/12075/… – Mauricio Scheffer Aug 21 at 13:51

closed as exact duplicate by Mauricio Scheffer, Henk Holterman, Jason Z, Eric, Bill the Lizard Aug 25 at 19:28

5 Answers

vote up 5 vote down check

The best you can do is make reverse-engineering more difficult by using an obfuscation tool like Dotfuscator:

Dotfuscator is a post-build .NET hardening and instrumentation platform for protecting, measuring and managing .NET applications.

One of the challenges associated with programming using .NET is that source code can be easily derived from compiled executables through the use of reverse-engineering tools and techniques. This quick access to source code increases the risk of intellectual property theft, source code vulnerability exploitation, privacy violations, and information loss, as well as potential revenue loss from piracy.

Introduced in 2003 alongside Microsoft's release of .NET 1.0, Dotfuscator uses a variety of advanced and patented techniques to harden .NET applications. Dotfuscator provides capabilities for obfuscation, compaction, tamper detection and resistance, expiration and notification ("Shelf Life") behaviors, watermarking, as well as the ability to inject runtime intelligence instrumentation, which is used by PreEmptive Solutions' Runtime Intelligence Service™.

Dotfuscator is used for applications targeted to run in desktop, mobile, web and cloud (e.g. Azure) environments; it is also used with Silverlight applications.

Dotfuscator works solely on compiled .NET assemblies, and Dotfuscator’s output files are standard .NET assemblies that run under the .NET Common Language Runtime with no additional dependencies

link|flag
Good answer. I still love FUD so much... ^^ – Clement Herreman Aug 21 at 13:49
vote up 2 vote down

You can "scramble" your code using an obfuscator, there are many available on the market

"Encrypting" your code is more complicated, but there are also tools available to do this, such as Salamander Protector

link|flag
vote up 1 vote down

I use IntelliLock and .NET Reactor both products by Eziriz. They seem to work just fine and the price isn't bad.

link|flag
vote up 2 vote down

You are looking for obfuscators.

Google for them, I use {smartassembly}. It's great.

One thing to remember, Obfuscation is the same as House Security.

You're making yours harder to get into so that they'll go after your neighbour. It doesn't change the fact that if they want to get in, they will. ;)

link|flag
+1 for a humourous analogy. I like it. – Matthew Scharley Aug 21 at 13:48
vote up 0 vote down

google says this

link|flag
1  
The aim of SO is not to link to google (IMO), but to answer and then explain and justify the answer. Anyway your answer contains good pointer, but it's not really an "answer" – Clement Herreman Aug 21 at 13:48

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