Netbeans Obfuscation - Stack Overflow most recent 30 from stackoverflow.com2009-12-10T00:23:02Zhttp://stackoverflow.com/feeds/question/977144http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/977144/netbeans-obfuscation1Netbeans ObfuscationJon2009-06-10T17:46:39Z2009-09-23T12:10:57Z
<p>I'm very new to obfuscation and don't have a lot of experience with ant. Come someone provide me a way to obfuscate a regular Java application with ProGuard (or any other open source obfuscator). Currently I'm using NetBeans 6.5.1, and only see the obfuscation ability if I create a JAVA ME, and not a Java Application like I have. I've looked at <a href="http://wiki.netbeans.org/DevFaqModuleObfuscation" rel="nofollow">http://wiki.netbeans.org/DevFaqModuleObfuscation</a>, but don't understand what they're saying.</p>
<p>Thanks for any input.</p>
http://stackoverflow.com/questions/977144/netbeans-obfuscation/978105#9781052Answer by jackrabbit for Netbeans Obfuscationjackrabbit2009-06-10T20:55:27Z2009-06-10T20:55:27Z<p>The FAQ you point to is for obfuscating NetBeans modules. This is quite a complicated use case, so I will assume that it is not the <em>regular application</em> you are interested in.</p>
<p>Very briefly: the obfuscation process changes the names of classes, methods and fields to make it more difficult to reverse engineer your application.</p>
<p>This causes some issues:</p>
<ul>
<li>the JVM requires your application to have a public static void main( String args[] ) in a public class, so you must tell proguard not to change this name</li>
<li>if you are using any sort of introspection, you have to protect the relevant names from being changed</li>
<li><a href="http://proguard.sourceforge.net/manual/examples.html#native" rel="nofollow">other cases</a>, as explained in the manual</li>
</ul>
<p>Additionally, proguard strips out unused code. If you have any classes that are used but not referenced directly, you have to <code>-keep</code> them as well.</p>
<p>The proguard documentation includes an <a href="http://proguard.sourceforge.net/manual/examples.html#application" rel="nofollow">example</a> of how to obfuscate a simple application. Here is the example explained (with some less confusing names):</p>
<pre><code>-injars application.jar # obfuscate all the classes in the named jars
-outjars obfuscated.jar # save all the obfuscated classes to the named jar
-libraryjars <java.home>/lib/rt.jar # these are all the libraries that the application uses
-printmapping obfuscation.map # save a file linking the original names to the obfuscated ones
# this helps understanding stack traces from the obfuscated application
# we need to keep our main class and the application entry point
-keep public class com.mycompany.Application {
public static void main(java.lang.String[]);
}
</code></pre>
<p>Unless you specify <code>-dontshrink</code>, proguard will remove any code not kept or not referenced from any kept code. So in the above configuration, any code not referenced (indirectly) by the main method will be removed.</p>
<p>Proguard includes an Ant task that can be used to integrate with the NetBeans workflow. I would suggest experimenting manually first though, without Ant, as that takes one of the complicating factors out of the process. Build your application jar with NetBeans and then try to obfuscate with the above configuration (fleshed out if necessary). Make sure to test the obfuscated application, as innumerable things can go awry. Once you have a working proguard configuration, try adding an Ant task to your build file to automate the obfuscation process within NetBeans.</p>
http://stackoverflow.com/questions/977144/netbeans-obfuscation/1465604#14656040Answer by Jacob Nordfalk for Netbeans ObfuscationJacob Nordfalk2009-09-23T12:10:57Z2009-09-23T12:10:57Z<p>Hi there.</p>
<p>Another solution than -dontskipnonpubliclibraryclasses is to use the same JDK for running proguard as you used for compiling the code in the JAR file.</p>
<p>For example, instead of
java -jar ../proguard3.8/lib/proguard.jar</p>
<p>use
/usr/local/jdk1.5.0/bin/java -jar ../proguard3.8/lib/proguard.jar</p>
<p>Jacob</p>