vote up 8 vote down star
5

I was thinking about obfuscating a commercial .Net application. But is it really worth the effort to select, buy and use such a tool? Are the obfuscated binaries really safe from reverse engineering?

flag

71% accept rate

11 Answers

vote up 10 vote down check

You may not have to buy a tool - Visual Studio.NET comes with a community version of Dotfuscator. Other free obfuscation tools are listed here, and they may meet your needs.

It's possible that the obfuscated binaries aren't safe from reverse engineering, just like it's possible that your bike lock might be breakable/pickable. However, it's often the case that a small inconvenience is enough to deter would be code/bicycle thieves.

Also, if ever it comes time to assert your rights to a piece of code in court, having been seen to make an effort to protect it (by obfuscating it) may give you extra points. :-)

You do have to consider the downsides, though - it can be more difficult to use reflection with obfuscated code, and if you're using something like log4net to generate parts of log lines based on the name of the class involved, these messages can become much more difficult to interpret.

link|flag
If they're properly obfuscated, wouldn't those logs become -near impossible- to interpret? "Much more difficult" seems a bit of an understatement here ;) – Kawa Oct 21 at 13:05
Well, keep in mind that (in theory) you have the original code to help, as well as the text of the log messages. The only thing that should be obfuscated would be the class and member names. In addition, many tools (Dotfuscator is one) create a map file to tell you what obfuscated construct name maps back to which original name - this can make it a pain to figure out exactly where the log messages come from, but nowhere near impossible. – Blair Conrad Oct 23 at 5:59
vote up 6 vote down

At our company we evaluated several different obfuscation technologies, but they all had problems. The biggest problem was that we rely a lot on reflection, e.g. to dynamically create grids based upon property names.

So all of the obfuscators rename things, you can disable it of course, but then you lose a lot of the benefit of obfuscation.

Also, in our code we have a lot of NUnit tests which rely on a lot more of the methods and properties being public, this prevented some of the obfuscators from being able to obfuscate those classes.

In the end we settled on a product called .NET Reactor

It works very well, and we don't have any of the problems associated with the other products.

"In contrast to obfuscators .NET Reactor completely stops any decompiling by mixing any pure .NET assembly (written in C#, VB.NET, Delphi.NET, J#, MSIL...) with native machine code. In detail, .NET Reactor builds a native wall between potential hackers and your .NET code. The result is a standard Windows based, not MSIL compatible, file. The original .NET code remains intact, well protected by native code and invisible for prying eyes. The original .NET code is not copied on harddisk at any time. There is no tool which is able to decompile .NET Reactor protected assemblies."

link|flag
Based on your description, this wouldn't appear to stop a determined hacker with an x86 decompiler. If a computer can execute it then the code can be decompiled. – Ant Sep 16 '08 at 13:39
@Ant : You try and reverse engineer a native code application. A simple for loop will be tens of instructions apparently unrelated. – Andrei Rinea Oct 9 '08 at 18:39
Ripping the .net code from a packed .net application from anything packed with Reactor is trivial at best. There are even several tutorials out there for it. – Simucal Nov 17 '08 at 3:43
And based on your description automatically destroys any portability benefit. – EFraim Aug 5 at 6:11
vote up 3 vote down

The fact that you actually can reverse engineer it does not make obfuscation useless. It does raise the bar significantly.

An unobfuscated .NET assembly will show you all the source, highlighted and all just by downloading the .NET Reflector. Add obfuscation to that and you'll reduce very significatively the amount of people who'll be able to modify the code.

It depends on you are you protecting yourself from. If you'll ship it unobfuscated, you might as well open source the application and benefit from marketing. Shipping it obfuscated will only allow people to relatively easily generate modified binaries through patches instead of being able to steal your code and create a direct competitor. Getting the actual source from obfuscated code is very hard, depending on the obfuscator, of course.

link|flag
vote up 3 vote down

Remember that obfuscation is only a barrier to the casual examiner of your code. If someone is serious about figuring out what you wrote, you will have a very hard time stopping them.

If you have secrets in your code (like passwords), you're doing it wrong.

If you worried someone might produce your own software with your ideas, you'll have more luck in the marketplace by providing new versions that your customers want, with technical support, and by being a partner to them. Good business wins.

link|flag
vote up 2 vote down

No, obfuscation has been proven that it does not prevent someone from being able to decipher the compiled code. It makes it more difficult to do so but not impossible.

link|flag
vote up 1 vote down

I think that it depends on the type of your product. If it is directed to be used by developers - obfuscation will hurt your customers. We've been using the ArcGIS products at work, and all the DLLs are obfuscated. It's making our job a lot harder, since we can't use Reflector to decipher weird behaviors. And we're buying customers who paid thousands of dollars for the product.

So please, don't obfuscate unless you really have to.

link|flag
vote up 1 vote down

I am very confortable reading x86 assembly code, what about people that is working with assembly for more than 20 years ?

You will always find someone that only need a minute to see what your c# or c code is doing...

link|flag
vote up 0 vote down

It's quite simple to reverse engineer a .net app using .net reflector - since the app will generate VB, VC and C# code straight from the MSIL, and it's possible to pull out all kinds of useful gems.

Code obfuscators hide code quite well from most reverse engineering hacks, and would be a good idea to use on proprietary and competitive code that adds value to your app.

There's a pretty good article on obfuscation and it's workings here

link|flag
Good code obfuscators will cause apps like ILDASM and Reflector to crash... but that still doesn't stop people that really want to know how your code works. – Matthew Whited Oct 21 at 13:11
vote up 0 vote down

...snip... these messages can become much more difficult to interpret

Yes, but the free community edition that comes with Visual Studio has a map functionality. With that you can back track the obfuscated method names to the original names.

link|flag
vote up 0 vote down

I've had success putting the output from one free obfuscator into a different obfuscator. In Dotfuscator CE, only some of the obfuscation tricks are included, so using a second obfuscator that has different tricks makes it more obfuscated.

link|flag
That's like claiming that applying ZIP after RAR makes the archive smaller. – EFraim Aug 5 at 6:09
No it isn't. There are some things that aren't obfuscated in CE, and loading the obfuscated DLL in Reflector shows up the unobfuscated items as clearly readable. After obfuscating with the second tool, these items are obfuscated, and there is nothing readable in Reflector. – harriyott Aug 5 at 9:08
Enjoy debugging those stack traces from your customers when your app crashes. – Matthew Whited Oct 21 at 13:13
There's a mapping file generated, so (although tedious) it is possible to match them up again. – harriyott Oct 21 at 14:26
vote up 0 vote down

This post and the surrounding question have some discussion which might be of value. It isn't a yes-or-no issue.

link|flag

Your Answer

Get an OpenID
or

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