AS3 Obfuscation across many RSLs - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T18:04:30Z http://stackoverflow.com/feeds/question/871424 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/871424/as3-obfuscation-across-many-rsls 0 AS3 Obfuscation across many RSLs Nate Austin 2009-05-16T01:23:02Z 2009-05-16T03:40:43Z <p>I'm working on a very large flash project that shares code extensively across runtime libraries. I'm evaluating whether to obfuscate our code, and which obfuscator to use, and I'm having trouble finding one that fits the bill.</p> <p>-Many RSLs, many source trees and projects. -We use some dynamic properties, so I'd like to have a good deal of control over which symbols are renamed. -Integrable into a build system</p> <p>I looked at Amayeta, but I'm not convinced it has the fine-grained control I need. I looked at irrfuscator, but it seems very immature, and doesn't seem to scale well to large projects.</p> <p>Any other recommendations? I'm aware that obfuscation or encryption won't provide complete protection, I'm just looking to make it harder for folk to mess with us. </p> <p>On the other hand, if no acceptable obfuscator exists, I'll just argue that we don't need to do it.</p> http://stackoverflow.com/questions/871424/as3-obfuscation-across-many-rsls/871636#871636 1 Answer by for AS3 Obfuscation across many RSLs 2009-05-16T03:40:43Z 2009-05-16T03:40:43Z <p>It seems that since you're going with lots of shared libraries, that you'll have to not obfuscate the vars, methods or even some strings--since the other swfs will need to be able to access them. Which makes it a lot less useful, and a bit easier for a decompiler to produce readable results.</p> <p>Stripping the whitespace might probably won't do much either, since the decompilers all format the code from scratch too.</p> <p>Minifying it would shrink the compiled size a little bit, and encrypting the strings might be helpful, but only if they don't get in the way of SWF (RSL) interoperability.</p> <p>The bottom line question I'd ask is that are the people who are desperate enough to bother decompiling the code, aren't also going to be desperate enough to "defuscate" the what will essentially be combined functions and short var names?</p>