Top "Decompiling" questions

Decompilers analyze binary code outputting source code in a higher level language such as C. The output is generally not any easier to analyze than the original assembler due to loss of information during compilation.

Best (free?) decompiler for C# with Visual Studio integration?

In my Java development I have had great benefit from the Jad/JadClipse decompiler. It made it possible to know …

c# visual-studio decompiling
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 …

java decompiling
Decompiling a compiled program with Go

I have built a simple executable program with Go. I've compiled the code into a static binary program. I want …

compiler-construction go decompiling
Extract VB.NET code from exe file

I made a program using VB and I lost the source code but I have the exe file. How can …

vb.net decompiling
How to remove class file in .jar file and change it with my own implementation

So, I have third party library, which is a .jar file. There are some classes in that jar. The problem …

java android jar decompiling
Fernflower Java decompiler help

As the author has forgotten to add a detailed usage listing (or I can't find it), I wonder if anyone …

java decompiling
Is it possible to decompile a .dll/.pyd file to extract Python Source Code?

Are there any ways to decompile a dll and/or a .pyd file in order to extract source code written …

python dll decompiling extraction pyd
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 …

java android reverse-engineering decompiling
How to decompile iOS apps?

I want to see the code of an iOS app. The app I downloaded is .deb. First question: Is it …

ios decompiling deb
Exploring and decompiling python bytecode

Lets say I have: >>> def test(a): >>> print a Now, I want to explore …

python decompiling