Tagged Questions
Decompiling is the process of analysing an executable or object code binary and outputting source code in a programming language such as C.
49
votes
7answers
59k views
How do I decompile a .NET EXE into readable C# source code?
I wrote a C# application for a client a couple of years ago, but I no longer have the source code. All I have is the EXE that I deployed on the client's PC. Is there a way I can generate C# source ...
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 ...
30
votes
9answers
29k views
Free Python decompiler that is not an online service?
Is there a library or application that can decompile Python 2.4+ bytecode to obtain the source code?
A search revealed:
http://depython.net - an online service that you need to upload a pyc or pyo ...
25
votes
2answers
28k views
Is it possible to decompile an Android .apk file?
Are the users able to convert the apk file of my application back to the actual code?
If they do - is there any way to prevent this?
23
votes
4answers
6k views
Reflector for Java?
Is there a Java equivalent to .NET Reflector?
Edit: more specifically, decompiling is what I'm after.
23
votes
2answers
23k views
What's a good C decompiler?
I am searching for a decompiler for a C program. The binary is a 32-bit Linux executable. Objdump works fine, so basically I am searching for something which attempts to reconstruct the C source from ...
21
votes
11answers
49k views
Is it possible to “decompile” a Windows .exe? Or at least view the Assembly?
A friend of mine downloaded some malware from Facebook, and I'm curious to see what it does without infecting myself. I know that you can't really decompile an .exe, but can I at least view it in ...
17
votes
5answers
33k views
Is there a C++ decompiler?
I have a program in which I've lost the C++ source code. Are there any good C++ decompilers out there?
I've already ran across Boomerang.
16
votes
14answers
28k views
Can you recommend a Java Decompiler and UI for Linux?
I am looking for a Java decompiler like DJ Java Decompiler but that runs natively on Linux. (Ubuntu/Hardy/64). Can you recommend one ?
15
votes
4answers
3k views
How can I protect MySQL username and password from decompiling?
sadly Java Classes can be decompiled pretty well, how can I protect my database if I have to use the login data in the code?
14
votes
3answers
854 views
How to protect compiled Java classes?
I know, many similar questions has been asked here. I am not asking if I can protect my compiled Java class - because obviously you will say 'no you can't'. I am asking what is the best known method ...
13
votes
2answers
132 views
Good software engineering vs. Security
The Security and Design guidelines go to great length outlining various methods to make it more difficult for an attacker to compromise in-app billing implementation.
Especially noted is how easy it ...
12
votes
8answers
3k views
Is it really Impossible to Protect Android apps from Reverse Engineering?
As we know, Android apps are written in Java. In Java, no matter what you do, it is impossible to protect compiled code from decompilation or reverse-engineering, as the following thread suggests:
...
12
votes
7answers
6k views
Best free Java .class viewer?
I've used DJ Java Decompiler, which has a handy GUI, but it seems as if the latest version is only a trial and forces you to purchase the software after some period of days (I recall using an earlier ...
12
votes
8answers
9k views
How to lock compiled Java classes to prevent decompilation?
How do I lock compiled Java classes to prevent decompilation?
I know this must be very well discussed topic on the Internet, but I could not come to any conclusion after referring them.
Many people ...
11
votes
2answers
176 views
Is this a bug in Scala 2.9.1 lazy implementation or just an artifact of decompilation
I am considering using Scala on a pretty computationally intensive program. Profiling the C++ version of our code reveals that we could benefit significantly from Lazy evaluation. I have tried it ...
11
votes
2answers
511 views
How are Scala closures transformed to Java objects?
I'm currently looking at closure implementations in different languages. When it comes to Scala, however, I'm unable to find any documentation on how a closure is mapped to Java objects.
It is well ...
11
votes
9answers
1k views
Java decompiler written in the United States
I work for a government contractor that is really picky about what software gets installed on their machines (US government laws). As part of a reverse engineering effort, I need to figure out what a ...
10
votes
8answers
3k views
How can I protect my .NET assemblies from decompilation?
One if the first things I learned when I started with C# was the most important one. You can decompile any .NET assembly with Reflector or other tools. Many developers are not aware of this fact and ...
10
votes
6answers
1k views
Best Library for programatically inspecting Java class files
I'm working on a project where we're doing a lot of remote object transfer between a Java service and clients written in other various languages. Given our current constraints I've decided to see ...
10
votes
3answers
4k views
BAML Decompiler / Viewer
Could anyone recommend a good BAML Decompiler / Viewer besides BAML Viewer plugin for Reflector, which doesn't handle path geometry/data?
9
votes
2answers
538 views
Reverse Engineering old paint programs
I've got a couple of really old MSDos based paint programs. They work on palette indexed image buffers. They have a number of spectacular shape drawing tools, brushes and effects that simply do not ...
9
votes
3answers
7k views
Is there a vb6 decompiler?
I lost the source code from one project I did on the company I'm working for and haven't been able to find a vb6 decompiler, does that even exists?
Forgot to say that I only have the EXE. I ...
9
votes
11answers
957 views
Is it wrong to decompile code?
Is it wrong to reverse engineer code?
I understand that with languages such as C# it is a pretty easy thing to do.
Is it something that programmers use as a tool in their box of tricks?
8
votes
3answers
603 views
How safe is information contained within iPhone app compiled code?
I was discussing this with some friends and we began to wonder about this. Could someone gain access to URLs or other values that are contained in the actual objective-c code after they purchase your ...
8
votes
3answers
12k views
Decompiling Objective-C libraries
I've just finished a library in Objective-C that I compiled as a Static Library for distribution.
I'd wanted to know what chances to get this decompiled are out there.
Do you know any software that ...
8
votes
6answers
1k views
Is Java Code obfuscation actually effective vs decompilers?
I am curious enough to considering not evening writing certain code in Java because of how easy it is to decompile. Is there a way that I can write in Java and not have to worry about decompilers? I ...
8
votes
3answers
5k views
Command-line java decompiler (alternative to jd-gui)
I'm looking for a program to batch decompile java classes.
And i found JAD, but it didn't support some new features of JAVA, and the benefit of this program is that it can execute from command line ...
8
votes
5answers
2k views
Why is it so easy to decompile .NET IL code?
Why is it so easy to decompile .NET IL-code into source code, compared to decompiling native x86 binaries? (Reflector produces quite good source code most of the time, while decompiling the output of ...
8
votes
7answers
16k views
Best (free?) Decompiler for C# with VS integration?
In my java development I have had great benifit from the jad/jadclipse decompiler. It made it possible to know why a third party library failed rather than the usual guesswork.
I am looking for a ...
7
votes
2answers
176 views
Is there a Java decompiler (be it standalone or an Eclipse plugin) that is able to decompile code woven by AspectJ?
I have scanned the various related questions on the Internet (like http://www.java-decompiler.com/) and SO in particular. So far, I could only find two Java decompilers - JD-GUI and DJ Java Decompiler ...
7
votes
2answers
2k views
java inner/outer class questions about outer class private variables access
I have the following java class:
class Outer
{
private Integer a;
private Long b;
class Inner
{
public void foo()
{
System.out.println("a and b are " + a ...
6
votes
1answer
182 views
Java decompiler that works with Java 5 (handles enums among other new things)
I know this question was asked gzillions of times already, but I am specifically after a decompiler that would handle enums corrently (because the jar I am decompiling uses enums heavily). I tested ...
6
votes
5answers
268 views
What is the point of encrypting anyting in Android (or Java) if source code can be reverse engineered?
Android and Java provide a crypto API that is relatively easy to use for crypto non-experts.
But since we know that no code can really be protected from reverse engineering, especially string ...
6
votes
1answer
157 views
Searching for a nice way to define rules for decompiler, need advice
I am working on a very simple decompiler for MIPS architecture and as I progress I have to define lots of rules for code analysis, for example "if this opcode is lui and next opcode is addiu then ...
6
votes
2answers
193 views
Enumerable.Sum() overflowing
Hey, I'm using the Enumerable.Sum() extension method from LINQ to compute hash codes, and am having a problem with OverflowExceptions when the code gets big. I tried putting the call in an unchecked ...
6
votes
6answers
315 views
class file to java file conversion
How to get java file i.e source code from class file i.e from compiled file?
6
votes
12answers
3k views
Preventing decompilation of C# application
We are planning to develop a client server application using C# and MySQL. We plan to sell the product on the shelf like any other software utility. We are worried about the decompilation of our ...
6
votes
2answers
7k views
Exploring and decompiling python bytecode
Lets say I have:
>>> def test(a):
>>> print a
Now, I want to explore see how test looks like in its compiled form.
>>> test.func_code.co_code
...
6
votes
5answers
1k views
Translating Java bytecode into other representations and programming languages
I'm looking for ways/tools/projects to translate Java bytecode into other programming languages or, failing that, at least into a structured representation (like XML). Ideally open source, naturally.
...
6
votes
9answers
5k views
.NET decompilation, how easy is it?
I was looking into the best encryption for a license key for an application, and someone said that someone can easily decompile the application and then just skip the test for the license key.
how ...
5
votes
4answers
120 views
Multi return statement STRANGE?
Today while playing with a De-compiler, i Decompiled the .NET C# Char Class and there is a strange case which i don't Understand
public static bool IsDigit(char c)
{
if (char.IsLatin1(c) || c ...
5
votes
1answer
233 views
Java 7 String switch decompiled: unexpected instruction
I have decompiled a very simple class that uses the new Java 7 String Switch feature.
The class:
public class StringSwitch {
public static void main(String[] args) {
final String color ...
5
votes
2answers
426 views
java decompiler with save line numbers in actual physical position
Many IDE's debugger match the physical line number.
I'm looking for java decompiler with saving actual line number in decompiling code.
http://java.decompiler.free.fr/ is not one.
5
votes
3answers
1k views
How to read .class file?
I need to read the contents of .class file of java in my java program or is there any method available to read the same.Actually I want to retrieve the local variable table ,line number table,etc from ...
5
votes
2answers
149 views
What are my free and/or open source options for decompiling class files and JARs?
I'm familiar with JAD, and haven't found anything newer or better, but I really didn't look that hard because I had previous experience with the JAD tool. However, I might have missed some really good ...
5
votes
1answer
307 views
What are some Open Source Java projects with good, fine-grained unit test coverage?
I'm working on a Java decompiler with correctness(*) as a primary design goal. To test it, I'm looking for some Java Open Source projects with fine-grained unit test coverage. These projects can be ...
5
votes
3answers
5k views
Opensource C/C++ decompiler
Duplicate of http://stackoverflow.com/questions/193896/whats-a-good-c-decompiler and http://stackoverflow.com/questions/205059/is-there-a-c-decompiler taken together.
Does somebody know any ...
5
votes
3answers
11k views
Is there a program to decompile Delphi?
Someone just sent me a decompile of a program into C. It was a very good decompile, producing nice, mostly readabe C code (if you overlook the fact that none of the variables or functions had a ...
5
votes
8answers
3k views
How do you decompile a swf file [closed]
I am the maintainer of a site that has allegedly 'lost' the source code to a flash swf file. How do I decompile this source?