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. See tag wiki for more.

learn more… | top users | synonyms

0
votes
1answer
11 views

Is there any tool for decompiling raw binary files to C code for the Motorola 68000 processor series?

I have the ROM dump (.bin files) targeted for the MC68008 processor. Need to convert them into a high level source code. I have already found tools for disassmbling them into assembly code. The next ...
0
votes
0answers
11 views

modifying value of a control with ollydbg?

I have a win32 executable file that build by Borland Delphi 7.0. I want to crack it! I disassembled it by DeDe and found a control: object SP_2_1: TSpinEdit Left = 152 ...
1
vote
1answer
24 views

Is decompiled __thiscall expression a pointer to a function?

I am doing static analysis on a Win32 .dll using IDA Pro 6.3 and am using the Hex-Rays decompiler in tandem with the IDA disassembler. I'd like to understand what this line does. v4 = (*(int ...
-1
votes
1answer
37 views

how can i protect CIL ( Common Intermediate language ) assembly from Decompiling

can i convert CIL assembly files (.net exe files) to native exe files or exist a tool that protect or avoid from easy decompiling to magar source ? ( Not just Dotfuscator Community Edition )?
-1
votes
1answer
53 views

Net Reflector decompile issue - wrong method names etc

Hello i try to restore 1 of my old app's source code, i tried to do it via NetReflector 8.1, but when i use it all the method / vars names are weird and incorrect for example: ...
-2
votes
2answers
52 views

What tool should I use to decompile Java byte code to Java source code? [closed]

If you had to decompile java byte code into Java source code, what tool would you use?
0
votes
2answers
30 views

Decompiled assembly, which programming language was used

How would you know if a decompiled assembly was written in C# or VB.net?
0
votes
0answers
16 views

Why isn't my Jasclipse Jasmine Disassembler Debugger, CupOfJoe.dll, working?

I am using Jasclipse (outdated Java Jasmine assembly software) on Eclipse Europa (the old version from 2007) on an outdated Java software development kit 1.5 update 3. The old compiler and SDK match ...
0
votes
1answer
28 views

Restoring code from JAR

I accidentally deleted the whole folder nest thingy from my workspace for this project I'm working on and now I only have a exported JAR file. Is there any way I could just open the JAR file with ...
0
votes
0answers
56 views

Retrieving source code from a .BAR file of BB10 app [closed]

I want to know is there any possibility of retrieving the C++ source code from the .BAR file of the Blackberry 10 app. thanks in advance.
1
vote
1answer
29 views

What is a portable way to list all imports required by a complied Java class

I'm looking for a few ideas to quickly generate an list of imports requires by a java class. Ideally this could be done using javap or some other tool found in the JDK. I'm not interested in a GUI ...
0
votes
2answers
450 views

How to get source code from android apk [closed]

Is there any way to extract my source code from this APK file? I realize that is is most likely a shot in the dark... but I am really desperate. I have read about tools like smali and apktool... ...
0
votes
2answers
492 views

How to extract java files from .apk file

Unfortunately I deleted my Android source code. Tried to get jar using dex2jar and baksmali and used jd-gui to get java source files using my .apk file. Yes I got the files but the problem I have is, ...
0
votes
0answers
47 views

Any way to Extract/Decompile Wolfram CDF source codes?

Hi. As a matter of fact, I have some CDF files which can only be "played" by the Wolfram CDF Player. But it really matters to me to find the source code instead, let's say, the .nb Mathematica ...
-8
votes
1answer
93 views

How to make a Java decompiler? [closed]

As a project at some point in time, I would like to make my own Java decompiler to convert bytecodes back to plain text. I did Google for some APIs that would let me do that but I could not find ...
1
vote
0answers
249 views

Is there an ARM decompiler that is inexpensive, mature, and produces high-quality results? [closed]

I am looking for a decompiler (convert binary/asm to C/pseudo code). I know about IDAPro decompiler, but it's really expensive. Also, I know about Hopper, but it's ARM decompiler isn't ready yet for ...
-2
votes
1answer
108 views

Manually writing C code from Intel assembly language? [closed]

I was wondering if anybody has some professional hints on how to look at simple Intel assembly language and convert it to C code. Any help would be great. Thanks!
0
votes
2answers
44 views

It is possible to find a specific byte array in a .NET assembly?

How easy would it be for a someone to decompile/disassemble/reflect over a .NET Assembly compiled in release mode to find the contents of a specific byte array? Is it a good idea to implement a ...
0
votes
0answers
453 views

Decompile and Recompile apk files on ubuntu

I am trying to modify an android app using apktool I downloaded the apktool and now i have 3 file apktool, aapt and apktool.jar i am trying to modify the background of the Gallery 3D.apk I am using ...
1
vote
1answer
90 views

Decompiled assembly - unusual code

I decompiled an assembly using ILSpy, and one class in particular got my attention: public class CustomTextStream : NetworkStream { private EventHandler<CustomEventArgs> someEvent; ...
3
votes
3answers
204 views

Decompile C code with debug info?

Java and Python byte code are relatively easy to decompile than compiled machine code generated by C/C++ compiler. I am unable to find a convincing answer as to why the information from the -g option ...
-2
votes
1answer
41 views

Getting the code from a .mic1 File

Is there any way to look at the source code of a .mic1 file?
0
votes
2answers
28 views

jd-eclipse for dynamically generated java classes

I was looking at JD-Eclipse to be able to view contents of class files. Does anyone know if it is possible to view contents of dynamically generated classes (say proxies) loaded in the JVM using this? ...
0
votes
7answers
164 views

How do I rename a Java .class file?

I am debugging a program that uses a precompiled jar. I want to log calls made to a function in some class. The idea is to rename the original class file Xxx.class to Xxx0.class and define the ...
5
votes
1answer
116 views

python: how to get the source from a code object? [duplicate]

let's suppose we have a python string(not a file,a string,no files) TheString = "k=abs(x)+y" ok? Now we compile the string into a piece of python bytecode Binary = compile( TheString , ...
0
votes
3answers
125 views

Coldfusion Runtime Source Code

Good Day, I was wondering if it was possible to view/debug/hack into the coldfusion.runtime source code. Specifically, I'm getting out of memory errors that look like the following: ...
4
votes
1answer
108 views

Why does java decompiler does not save annotations [closed]

Why a decompiled java files does not have any annotations in it?
6
votes
2answers
150 views

Decompiling OCaml byte code files

I am working on Ocaml and I've some binaries that I need to figure out. The closest I've come to is converting OCaml byte code to C compiled code using ocamlcc. I don't wish to reverse engineer the ...
1
vote
3answers
198 views

How to reverse a DLL into C++ code?

I know it's impossible to reverse a dll into a c++ code so I would like to collect as much as possible details from it. It's not my dll, so I don't have the source code of course. Which program should ...
2
votes
2answers
98 views

Change .jar file without the source?

I have a Java based TCP Client that talks to our production server, which I'm re-writing. The client has the server's IP & port hard coded. What I want to be able to do is change just the IP ...
6
votes
2answers
147 views

Java inner class inconsistency between descriptor and signature attribute? (class file)

I'm trying to understand if there's a reason in the spec for the discrepany between java descriptors and signatures for inner classes. (I'm looking directly at the content of the class files here, but ...
0
votes
1answer
56 views

Decompile .swf, but no code is shown! help please

Spent two weeks creating a flash presentation hundreds of photos and the file became corrupted when Nero 7 crashed :( and my pc restarted. A quick seach told me of some decompilers (showmycode.com) ...
0
votes
0answers
58 views

C++ dissasembler? [duplicate]

Let me just say that I am now backing up EVERYTHING. I accidentally typed this line, g++ -o a3p1q1.cc a3p1q1.cc And I now have a binary instead of my source. Does anyone know of a good dissembler ...
0
votes
1answer
76 views

How to save an array of byte as a class file in java and decompile it later?

I'm doing a wargame and I need to analyze a java app. So the app loads a corrupted class file, converts it to an array of bytes, does something with it, and then loads the class properly using that ...
0
votes
0answers
135 views

error in .apk decompilation

I wanted to decompile a .apk file...so I followed steps given in one of the answers (Decompile an APK, modify it and then recompile it) on the stackoverflow.... But I am facing a problem while ...
5
votes
1answer
2k views

How to reverse-engineer / decompile an Android APK which was obfuscated using ProGuard?

Unfortunately, I have lost the source code of one of my apps which I obfuscated using ProGuard. I still have the .apk file and some config files which were generated by ProGuard: dump.txt ...
0
votes
1answer
62 views

Find near duplicate binary files (.lib,.bin)

Scenario is: Though the source-code doesn't change, I'm seeing that the the compiled lib/bin files are having difference though It's compiled by same compiler and with same dependencies. Since it's ...
1
vote
2answers
155 views

Decompile WP8 assemblies

Anyone have clue, how to go about viewing the source from the Microsoft.Phone.dll [Windows Phone 8 ]. I tried this with the .Net reflector and JetBrains dot peek , Unfortunately it did not decompile ...
0
votes
2answers
100 views

Running decompiled file

I was working on an Android app but yesterday my Hard disk got crashed and all the data has been gone. What I'm now left with is a .apk file which I kept as a back up. I somehow managed to get my code ...
1
vote
0answers
373 views

Boomerang decompiler fails

I need to decompile a windows program which the source code was lost for a long time. I am using boomerang in windows 7 for this. However, it looks broken, gives this message and quits: Could not ...
-5
votes
3answers
178 views

i want to decompile having a dll created using visual studio c# but not a .NET dll. .NET Reflector is declaring

I want to decompile a dll created using visual studio c# but not a .NET dll. .NET Reflector is declaring "Not a .NET decompiler". IS there any other decompiler existing?
1
vote
0answers
89 views

Is that possible to locate the 'HOME' key press in IDA? [closed]

I am using IDA Pro and trying to decompile a dll file compiled with delphi 2007. This program was triggered by pressing 'HOME' key, so I am wondering if it is possible to locate the 'HOME' key event ...
1
vote
0answers
89 views

Compile FLA with all AS files

First of all, I'm not flash expert.. still trying to figure out, however, i used a tool (sothink SWF decompiler) to decompile an SWF file to FLA, i first thought it will only end up with a single FLA ...
0
votes
2answers
184 views

can vb.net application get decompiled into a source code? [duplicate]

Possible Duplicate: How can I protect my .NET assemblies from decompilation? I'm working on VB.NET application , and my question is : Can this application get decompiled into the source ...
0
votes
2answers
163 views

Hide math formula/algorithm from decompilation in Java

I'm writing a desktop java application. The program receives XML files from the customer's server. The data in a couple of tags is of type integer and is "encrypted" with some math formulas. When my ...
10
votes
3answers
505 views

How hard is it (really) to decompile assembly code? [closed]

I'm trying to find hard facts that will help my management understand how hard/easy it is to reverse-engineer compiled C code. Similar questions have been asked before on this site (see e.g. Is it ...
5
votes
1answer
168 views

Where to download .net 1.0 DLL's

I need to decompile an old class library using Telerik JustDecompile. My problem is that the library is referencing things like System.Web.dll Version 1.0.5000.0, which is the .NET 1.0 version if I'm ...
0
votes
0answers
65 views

Read swf file (version 8 or more) with C#

I want to ask if anyone has any idea about reading an swf file using c# to get the events. I need a library for swf version 8 or more. I know for 7 o less i can use SwfDotNet library but i don't think ...
3
votes
1answer
127 views

What's __PostIncrement in decompiled VB (by ILSpy)

I was just perusing the decompiled code for System.Collections.Generic.List(Of T).Add(item As T) using ILSpy and I found a call to __PostIncrement. I've never heard of such a thing in VB, so I did ...
-2
votes
1answer
340 views

Adding new activity to Decompiled APK [closed]

I know a little about the dextool and apktool which can be used to decompile the apk. but neither of them explicitly explain adding any new activity to the decompiled APK. is it possible, and if its ...

1 2 3 4 5 8