Tagged Questions
A decompiler performs, as far as possible, the reverse operation to that of a compiler.
98
votes
8answers
65k views
decompiling DEX into Java sourcecode
Are there any tools or recipes for turning Android DEX (VM bytecode) files into corresponding Java sourcecode?
79
votes
10answers
64k views
How do I “decompile” Java class files?
On Java performance questions on this site I often see responses from people who have "decompiled" the Java class file to see how the compiler optimizes certain things.
What program can I use to ...
42
votes
10answers
26k views
Is Jad the best java decompiler? [closed]
It hasn't been updated since 2006. Are there better alternatives?
Homepage: http://www.kpdus.com/jad.html
36
votes
6answers
3k views
Any maintained Open-Source Java Decompiler?
Is there any maintained Open-Source Java Decompiler?
Jdec looks nice but has no community and has bugs, none of which has got fixed since 2007.
Dava seems to be a thesis project rather than a ...
32
votes
10answers
65k views
How to decompile a whole Jar file?
Does anyone know of a free decompiler that can decompile an entire Jar file instead of a single class? I have a problem with sub classes like name$1.class name$2.class name.class
14
votes
7answers
10k views
How to debug compiled Java code in Eclipse
I wonder if there are any solutions for Eclipse IDE to debug Java code for which I have no source, i.e. to debug dynamically decompiled code, step through it, etc.? I tried to use JD-Eclipse, ...
12
votes
9answers
8k views
Choose and test java decompiler
Now I'm trying to find the best java decompiler, I found these:
http://java.decompiler.free.fr/
http://www.reversed-java.com/fernflower/
http://dj.navexpress.com/
...
10
votes
7answers
3k views
Where can I find a Java decompiler?
http://www.kpdus.com/jad.html#download ?
The above link to JAD (a Java decompiler) is not working. Is there any other place where I can find a Java decompiler?
9
votes
2answers
824 views
Compiler C to Brainfuck (for harassing a professor)?
A professor of mine has said he'll accept homework assignments in any language we'd care to use. I'm on good enough terms that I'd like to mess with him a bit and submit a valid homework assignment ...
7
votes
3answers
14k views
Decompiler for APK?
I know it is not right to do this, but is there any APK decoder/decompiler available around?
[Edit] From all efforts and searching i can conclude that, its not possible to regenerate exact java code ...
7
votes
13answers
2k views
Obfuscating C-based binaries to avoid decompilation
Is there some way to obfuscate C-based executables or libraries to prevent decompilation?
6
votes
3answers
2k views
Is there a java classfile / bytecode editor to edit instructions?
Is there a utility (or eclipse plugin) for editing java class files?
I'd like to manipulate the bytecode of a java class file without recompiling it nor having a complete buildpath.
E.g. to rename ...
6
votes
2answers
5k views
5
votes
2answers
175 views
ILSpy, how to resolve dependencies?
I want to disassemble an entire .NET assembly with ILSpy.
I used this code as base:
http://skysigal.xact-solutions.com/Blog/tabid/427/entryid/2488/Default.aspx
And it works fine, just when I have an ...
5
votes
3answers
395 views
how to write decompilers
how to write a simple decompiler for Java language? what are the steps of it?i don't know how to start!
thanks.
4
votes
3answers
112 views
How can I make Lua scripts un-decompilable?
I have many Lua scripts (for the multiplayer mod Multi Theft Auto) that are compiled, for many reasons, including theft prevention. In reality, this is only a theft deterrent, as Luadec ...
4
votes
1answer
583 views
How to decompile an exe file compiled by py2exe?
How to decompile an exe file compiled by py2exe?
just one exe file, didn'n have any zip file.
how to decompile to pyc or pyo file?
4
votes
2answers
422 views
What would be a more accurate decompiler than jad for Eclipse to get rid of <-MISALIGNED ->?
I have used jad for many years, most of these with the Jadclipse plugin to eclipse which makes it quite usable. Especially with the "Align code for debugging" which allows you to see the decompiled ...
4
votes
6answers
1k views
Encrypting password in compiled C or C++ code
I know how to compile C and C++ Source files using GCC and CC in the terminal, however i would like to know if its safe to include passwords in these files, once compiled.
For example.. i check user ...
3
votes
6answers
594 views
Decompiling an old Program
I have been asked to update a program written in 1987 in Delphi (I guess). I have no documentation about this program only a few side notes the programmer took that don't make too much sense to make.
...
3
votes
2answers
1k views
Decompiling an ARM asm back to C
I wrote a nice ARM assembler routine a few years back and it has done its job beautifully over the years on the ARM embedded systems it was designed for. Now, the time has come to port it on to ...
3
votes
4answers
4k views
Java decompiler for netbeans
Is there any open source java decompiler for netbeans just like jadclipse for eclipse.
3
votes
2answers
506 views
Is there any Java Decompiler that can correctly decompile calls to overloaded methods?
Consider this (IMHO simple) example:
public class DecompilerTest {
public static void main(String[] args) {
Object s1 = "The", s2 = "answer";
doPrint((Object) "You should know:");
...
3
votes
2answers
2k views
decompile an app binary to get back to source code
Is their anyway to take a binary - even signed by yourself, and get back to the code? Im trying to recover something that I deleted a while ago... but have the binary here.
Any ideas?
Cheers Guys
...
3
votes
2answers
581 views
General purpose utility or library for compiling/decompiling binary data files?
I have various binary file formats which I need to dump to some kind of text format, edit and then recompile (possibly to a slightly different version of the binary format). Of course I could write a ...
2
votes
3answers
106 views
why can we decompile .NET assemblies easily?
as the question title say, what's the main reason that why we can decompile .NET exe files easily? there are many softwares that i can obfuscate my application codes, but why it needs to obfuscate for ...
2
votes
2answers
144 views
Why are decompiled java programs not always directly compilable and what are the parts that are not?
So I am trying to make slight valid legal changes to a compiled java program. I am decompiling it using JD-GUI for Mac. For the most part the decompiled code is error free but there are some strange ...
2
votes
3answers
745 views
Best decompiler for obfuscated bytecode [closed]
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 ...
2
votes
1answer
504 views
how to use DEXtoJar
I find the solution to decompile a file dex to jar from this link http://code.google.com/p/dex2jar/downloads/list but i don't understand how to use it.
2
votes
3answers
234 views
Decompiling CHM (help) files with C or c++
I want to decompile CHM file to HTML format . Is it possible using c or c++ ? Is there any c or c++ library to do this.
2
votes
4answers
249 views
Java: Strange result after decompiling
I have a strange jar file, it contains some class that when I use JD Decompiler, it show a segment like this:
public final void a(ak aa) {
this.jdField_a_of_type_Ak = aa;
}
public final void ...
2
votes
3answers
798 views
How to view the source code from jar file in my own JAVA GUI?
I have one GUI with one list box to display the list of methods in the class.
I can achieve it using reflection.
But can I view the source code in anotehr text area on selecting the method name ?
I ...
2
votes
2answers
1k views
.dll decompiler
I have inherited a project from a previous developer. All the ASP .NET code behind files are contained within a .dll and the original files are unavailable. Is there any reliable decompiler out there ...
2
votes
3answers
2k views
Best Java decompiler freeware [closed]
Possible Duplicate:
Where can I find a Java decompiler?
Dear All,
I have lost my .java and only have class files left on server.i want to recover back my original code.please suggest which ...
2
votes
3answers
941 views
JAVA: if without curly brackets, and relation to continue
I have the following java code fragment
while (condition1){
switch (someinteger){
case 1:
if(condition2) continue;
// other stuff here
break;
...
2
votes
2answers
2k views
android storing key , decompiling fear
Im using amazing FPS and i have to store the secret key in the java code. However I am afraid that someone would decompile my apk and find the key. I have decompiled the apk myself and could not find ...
2
votes
2answers
1k views
How can I decompile Linux binaries from Windows?
How can I decompile Linux binaries (*.so) from Windows? Thanks.
1
vote
3answers
72 views
Good Tool to analyse assembly dependency in .NET application [closed]
I know there are many tools. I want to find out a good tool to show me what assembly is missing. I encountered an exception saying that one of the dependency assembly might be missing when I tried to ...
1
vote
2answers
287 views
Decompile Python 2.7 .pyc
I've searched up and down, but can't find a de-compiler that will work for Python 2.7 .pyc. Does anybody know of one that will work for Python 2.7? Thanks
1
vote
1answer
172 views
can i decompile pyc (compilled by python2.7) to py?
CVS deleted one of my files when I updated my project before commit. All that I've got now is a .pyc file compiled by Python 2.7. How can I decompile it?
1
vote
1answer
75 views
C# Commandline decompiler
I'm looking to decompile a lot of assemblies into C#. I found several tools that do a visual decompile. However I was wondering if anyone knew of a tool that can do decompile by command line (similar ...
1
vote
1answer
424 views
Anyone have experience with APKTool, the Android decompiler?
I'm trying to make a small change to the layout of the keyboard app which comes with the MIUI Android 2.3.5 ROM (Mms.apk). Upon recompiling the files back into an apk (and signing them with jarsigner) ...
1
vote
2answers
139 views
Manually created CSS into LESS
Is there a tool available for converting a manually created CSS file into a nested, well optimized LESS file?
1
vote
3answers
84 views
Getting the AST of a function
Say I have a function:
function hi()
print('hi')
end
I'd like to be able to take this function as an argument and perform analysis on it, such as listing all the function calls in it, seeing ...
1
vote
0answers
37 views
decompile/extract microsoft agent?
I'm looking for a way to decompress or decompile a microsoft agent.
for example the merlin agent
I'd like to extract the animations/images. best way i've found so far is. recording my screen with a ...
1
vote
5answers
153 views
How Can I Protect My C# Code From Being Decompiled? [closed]
Possible Duplicate:
.Net Obfuscation
Alternative for Obfuscation in the .NET world
Just a few minutes ago, I read that there are a number of tools, many free, that allow you to convert a ...
1
vote
4answers
159 views
Is this valid C# code?
Is this valid C# code ?
public class Product
{
[CompilerGenerated]
private string <Name>k__BackingField;
[CompilerGenerated]
private decimal ...
1
vote
4answers
76 views
How can I extract the strings declared inside the java which went into a jar file
Is there a equivalent to the Unix strings command for jar files?
To give an example, if I have this Java file:
public class Foo {
String foo = "I\'m so meta even this acronym";
}
compiled and ...
1
vote
2answers
193 views
java decompiler for eclipse
I use JD for eclipse to decompile classes. There is a problem with line numbers. For example debugger shows current line 1123 but source code generated by JD has less than 1000 lines, however it shows ...
1
vote
4answers
115 views
Techniques to prevent/slow decompiling [closed]
Possible Duplicate:
Best Java obfuscator ?
For my example I know that eclipse offers a decompiling plugin. And I am sure there are a few other ways out there to go about decompiling ...