vote up 3 vote down star
3

Hi all,

I'm looking for a good java obfuscator.

I've done initial research into the following java obfuscators: proguard, yguard, retroguard, dasho, allatori, jshrink, smokescreen, jobfuscate, marvin, jbco, jode, javaguard, jarg, joga, cafebabe, donquixote, mwobfu, bbmug, zelix klassmaster, sandmark, jcloak, thicket, blufuscator, and java code protector.

I tried proguard and it has a really nice gui and seems really stable and is the most popular (it seems), but it seemed to not like some enumeration on a referenced jar file (not within the code I was trying to obfuscate) which was weird. Yguard seems to require some interaction with ant, which I didn't know too much about.

Can anyone recommend a good java obfuscator? It doesn't need to be free, it just needs to work well and be easy to use.

Please help.

Thanks in advance. jbu

flag

22% accept rate
also important: i have quite a big project that does include reflection and enumeration – jbu Nov 21 '08 at 23:25
Could you explain why you need a obfuscator? You can't get get good stack traces if you obfuscator it... – Pyrolistical Nov 21 '08 at 23:28
I need an obfuscator because the project I work for wants to protect its code from competitors – jbu Nov 21 '08 at 23:42
You also need an obfuscator/shrinker because it will often make your distributable JAR much smaller. – Software Monkey Oct 7 at 17:11

6 Answers

vote up 5 vote down check

I use ProGuard heavily for all my release builds and I have found it is excellent. I can't recommend it enough!

I have encountered obscure bugs caused by it's optimizations on several occasions and I now disable optimizations across the board - haven't had a problem caused by ProGuard since. Though, to be fair, these were all quite some versions ago - YMMV.

I use the GUI only to get a config started, and then I resort to editing the text config myself, which is really very simple to do.

I have quite complex projects all of which involve dynamic loading and reflection. I also heavily use reflection for a callback implementation. ProGuard has coped with these very well.

EDIT: We also use DashO Pro for one of our products - I looked into it for packaging the products I am responsible for and concluded that it's configuration was too convoluted and complex; also integrating it into the build script seemed like a bit of a pain. But again, to be fair, this was about 7 years ago... so it might be better in current versions.

link|flag
DashO build script support includes both a command line interface as well as an Ant task. – Joe Kuemerle Jan 15 at 4:45
i wish there would be a link to progurad so i wouldnt have to use google now ... ;-) – Chris Oct 7 at 12:08
@Chris: Done... – Software Monkey Oct 7 at 17:16
vote up 0 vote down

A good collection of links to free and commercial tools is given in this arcticle

"Protect Your Java Code - Through Obfuscators And Beyond"

The author also discusses the strong and weak points of bytecode obfuscation

link|flag
vote up 0 vote down

We are using Zelix Klassmaster for couple years and I can recommend it.

link|flag
vote up 1 vote down

I used Zelix Klassmaster in a commercial application for several years and found it to be excellent. I threw quite a few resources at the obfuscated code, and was not able to "break" it. It's pricey, but good.

I only stopped using it when my version got old enough that the upgrade cost was significant. My needs had changed and I didn't really need to obfuscate the classes anymore. However, if the need arises again, I'd pay for it and use it in a flash.

Cheers,

-Richard

link|flag
I use this a long time ago too. It is very good. Additionally IntellJ Idea plugin is available. blogs.jetbrains.com/idea/2006/… – Oscar Reyes Feb 6 at 20:50
vote up 0 vote down

VonC, here is the error message - including comments.

Exception in thread "AWT-EventQueue-0" java.lang.NoSuchFieldError: OK # 1 maps to status "OK" at com.xxx.xxx.monitor.gui.DataPanel.init(DataPanel.java:34) #external jar classes at comxxx.xxx.monitor.gui.MainPanel.initGUI(MainPanel.java:73) #external jar classes at com.xxx.xxx.monitor.gui.MainPanel.init(MainPanel.java:42) #external jar classes at org.yyy.yyy.MainPanel.startServices(MainPanel.java:223) #within obfuscated jar, but I had to keep this class because it contained reflection and enumeration at org.yyy.yyy.MainFrame.d(MainFrame.java:174) #same as comment above at org.yyy.yyy.MainFrame$2.run(MainFrame.java:125) #same as comment above at java.awt.event.InvocationEvent.dispatch(Unknown Source) at java.awt.EventQueue.dispatchEvent(Unknown Source) at java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown Source) at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source) at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source) at java.awt.EventDispatchThread.pumpEvents(Unknown Source) at java.awt.EventDispatchThread.pumpEvents(Unknown Source) at java.awt.EventDispatchThread.run(Unknown Source)

link|flag
vote up 2 vote down

What is the issue with ProGuard ? (which is recommended both by this question and this one).

There is a section of troubleshooting about enumerator, but they seem to be taken into account just fine.

However, Obfuscation breaks some attempts at reflection, even though modern obfuscators can detect and to some extend adjust usages of reflection in the code they're obfuscating.

link|flag
The issue is that the application uses code in an external jar, and I've "kept" the files that use enumeration in my own jar code, but at run time I'm still getting problems inside the external jar's code that relates to enumeration. I've followed the proguard troubleshooting the best I could. – jbu Nov 21 '08 at 23:40
Do you have the error messages that Proguard generates ? – VonC Nov 21 '08 at 23:49
yes, I posted it as an answer in this thread – jbu Nov 22 '08 at 0:15
hi VonC, I have trouble using proguard. I have 3 class files which I am packaging into one jar(with manifest). Now when I issue command : java -jar myjar.jar @myjar.pro I expect an output jar like myjar_out.jar stated in myjar.pro. But, that command runs the jar instead of creating a output jar. – Chandan . Jul 6 at 5:33
According to proguard.sourceforge.net/manual/usage.html , aren't you supposed to type java -jar proguard.jar @myjar.pro? Because I can confirm that java -jar myjar.jar ... will execute the main class found in myjar.jar. – VonC Jul 6 at 6:13
show 1 more comment

Your Answer

Get an OpenID
or

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