Is it impossible to secure .net code (intellectual property) ?

Posted by JL on Stack Overflow See other posts from Stack Overflow or by JL
Published on 2010-03-30T23:54:56Z Indexed on 2010/03/31 0:03 UTC
Read the original article Hit count: 252

I used to work in JavaScript a lot and one thing that really bothered my employers was that the source code was too easy to steal. Even with obfuscation, nothing really helped, because we all knew that any competent developer would be able to read that code if they wanted to.

JS Scripts are one thing, but what about SOA projects that have millions invested in IP (Intellectual Property). I love .net, and especially C#, but I recently again had to answer the question "If we give this compiled program over to our clients, can their developers reverse engineer it?" I had gone out of my way to obfuscate the code, but I knew it wouldn't take that much for another determined C# developer to get at the code.

So I earnestly pose the question, is it impossible to secure .net code?

The considerations I have as as follows:

  1. Even regular native executables can be reversed, but not every developer has the skill to be able to do this. Its a lot harder to disassemble a native executable than a .net assembly.
  2. Obfuscation will only get you so far, but it does help a little.
  3. Why have I never seen any public acknowledgement by Microsoft that anything written in .net is subject to relatively easy IP theft? Why have I never seen a scrap of counter measure training on any Microsoft site? Why does VS come with a community obfuscater as an optional component? Ok maybe I have just had my head in the sand here, but its not exactly high on most developers priority list.
  4. Are there any plans to address my concerns in any future version of .net?

I'm not knocking .net, but I would like some realistic answers, thank you, question marked as subjective and community!

© Stack Overflow or respective owner

Related posts about subjective

Related posts about .NET