Obfuscation in .NET: how is it done how secure is it? - Stack Overflow most recent 30 from stackoverflow.com2009-12-19T21:14:29Zhttp://stackoverflow.com/feeds/question/925929http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/925929/obfuscation-in-net-how-is-it-done-how-secure-is-it2Obfuscation in .NET: how is it done how secure is it?joshcomley2009-05-29T13:22:10Z2009-05-29T13:45:44Z
<p>I brought up a point about obfuscation in <a href="http://stackoverflow.com/questions/906746/is-it-legal-to-use-reflector-to-analyze-binaries-when-the-owner-forbids-a-viewing/906785#906785">another question</a> to which someone replied "obfuscation doesn't stop much".</p>
<p>Rather than start a debate in comments on there, I wanted serious community answers as to how safe my code is when obfuscated with X, Y or Z obfuscator, and if any obfuscation tools truly get the job done.</p>
<p>I'm also interested in any explanation given to garner some basic understanding of how an obfuscator works.</p>
<p>From my understanding, obfuscation cannot prevent reflection and detecting methods etc. but it makes the code within the methods less readable by skewering variable names. Is that wrong? What else does it do?</p>
http://stackoverflow.com/questions/925929/obfuscation-in-net-how-is-it-done-how-secure-is-it/925947#9259473Answer by Stephan for Obfuscation in .NET: how is it done how secure is it?Stephan2009-05-29T13:26:16Z2009-05-29T13:26:16Z<p>Obfuscation can never be truly secure since it's always possible to look at the MSIL. Even with a good obfuscator people could reproduce most of your code simply from the MSIL and since you have no choice but to compile to MSIL there really is nothing you can do.</p>
http://stackoverflow.com/questions/925929/obfuscation-in-net-how-is-it-done-how-secure-is-it/925952#9259521Answer by David M for Obfuscation in .NET: how is it done how secure is it?David M2009-05-29T13:27:16Z2009-05-29T13:27:16Z<p>There are ways of doing this sort of thing - for example, have you ever tried running Reflector on itself?</p>
<p>At the end of the day, if you have commercial software, people are going to pay for it to get a supported version whether they can see the source code or not - that's how many open source projects make their money. Obfuscation is basically what it says - it makes the code harder to understand, but doesn't actually hide it. Whether it's worthwhile or not is something you have to judge on a case-by-case basis.</p>
<p>If you're selling software to corporate customers, my view is it isn't worth the bother. If you're selling to retail customers and really want to hide the code, then perhaps .NET isn't the answer.</p>
http://stackoverflow.com/questions/925929/obfuscation-in-net-how-is-it-done-how-secure-is-it/925976#9259760Answer by Joel Coehoorn for Obfuscation in .NET: how is it done how secure is it?Joel Coehoorn2009-05-29T13:31:46Z2009-05-29T13:45:44Z<p><a href="http://stackoverflow.com/questions/751411/need-to-implement-expiration-date-for-beta-software-c/751553#751553">Don't worry about it</a> — <a href="http://stackoverflow.com/questions/651291/securing-a-net-application/651375#651375">it's as safe as it needs to be.</a></p>
http://stackoverflow.com/questions/925929/obfuscation-in-net-how-is-it-done-how-secure-is-it/926023#9260230Answer by LFSR Consulting for Obfuscation in .NET: how is it done how secure is it?LFSR Consulting2009-05-29T13:41:09Z2009-05-29T13:41:09Z<p>If someone is dedicated enough to get your program they will, no amount of obfuscation is going to change that. I think <a href="http://stackoverflow.com/questions/651291/securing-a-net-application/651375#651375">Joel Coehoorn's answer</a> to <a href="http://stackoverflow.com/questions/651291/securing-a-net-application-closed">Securing a .NET Application</a> sums things up nicely:</p>
<blockquote>
<p>You can't fully secure your app.
Thankfully, you don't really want to.
In my experience, you need to secure
your app just enough that someone
can't accidentally pirate your
product, and no more.</p>
</blockquote>
<p>Wikipedia has a decent section on <a href="http://en.wikipedia.org/wiki/Obfuscated%5Fcode" rel="nofollow">Obfuscation</a>, specifically they go through a <a href="http://en.wikipedia.org/wiki/Obfuscated%5Fcode#Step%5Fby%5Fstep" rel="nofollow">manual obfuscation</a> to give you an idea of what steps occur:</p>
<blockquote>
<p><li>Rewrite for as while. Use
special values. <li>Change iteration
into recursion <li>Obfuscate
constructs and meaningless variable
names <li>Remove intermediate
variables and literals <li>Obfuscate
names again <li>Remove literals
<li>Remove redundant text</p>
</blockquote>