I deal a lot with obfuscated (proguard) bytecode, and currently I'm using JD (http://java.decompiler.free.fr/ ) to decompile it. JD does a decent job, but some times the generated code is too difficult to understand.

This happens because Proguard (and other obfuscators) exploits the less constrained spec of JVM to produce valid bytecode which doesn't maps back to valid Java code (example: aggressive overloading).

So, my question is: which is the best decompiler to decompile obfuscated Java bytecode?

link|improve this question

Have you tried members.fortunecity.com/neshkov/dj.html – anirudh4444 Jun 22 '11 at 17:53
@anirudh4444 it only runs on windows. I need something that runs on Ubuntu. – JoaoHornburg Jun 22 '11 at 17:59
You could use wine/mono to run it on ubuntu. – anirudh4444 Jun 22 '11 at 18:21
Reverse engineering obfuscated bytecode is really hard. Much harder then obfuscating it in the first place. Get ready to spend alot of money or have a lot of time manually learning and translating jvm bytecode. – aramadia Jun 22 '11 at 18:29
feedback

closed as not constructive by 0A0D, Tim Post Sep 13 '11 at 12:37

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ for guidance on how to improve it.

3 Answers

up vote 3 down vote accepted

I doubt any decompilers do that. However you could implement custom bytecode transformation and rename overloaded method and variable names using something like ASM.

link|improve this answer
feedback

There is a decompiler known as Fernflower developed by a member here. It boasts being a decompiler specifically made for decompiled code, however you may want to take its claim with a grain of salt. It's uploaded here: https://github.com/Zidonuke/Bukkit-MinecraftServer/blob/master/tools/fernflower.jar?raw=true

link|improve this answer
feedback

I like Jad

link|improve this answer
feedback

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