Tagged Questions
The disassembler tag has no wiki summary.
12
votes
5answers
3k views
How to write a disassembler?
I'm interested in writing an x86 dissembler as an educational project.
The only real resource I have found is Spiral Space's, "How to write a disassembler". While this gives a nice high level ...
11
votes
3answers
2k views
Are there any IDA Pro alternatives?
The question title says it all:
Are there any disassembler which provide a feature set comparable to IDA Pro?
I'm interested in both free and commercial products. Please use one answer per product ...
6
votes
1answer
94 views
Any Object-Oriented Flexible Java x86 Disassembler Library?
I am looking for a Java x86 disassembler library that should have following features:
Disassembling X86 Code
Describing X86 commands with Java classes and Objects
The command classes should accept a ...
6
votes
3answers
459 views
Disassembling with python - no easy solution?
I'm trying to create a python script that will disassemble a binary (a Windows exe to be precise) and analyze its code.
I need the ability to take a certain buffer, and extract some sort of struct ...
5
votes
2answers
769 views
x86 instruction encoding tables
I'm in middle of rewriting my assembler. While at it I'm curious about implementing disassembly as well. I want to make it simple and compact, and there's concepts I can exploit while doing so.
It is ...
4
votes
2answers
937 views
Atmel AVR Disassembler
Can somebody suggest me any disassembler for Atmel AVR 8-bit microcontrollers? There are opensource projects for this?
Thanx.
4
votes
3answers
109 views
Modifying assembly instructions before loading
I have a DLL that I need to load (I have written it and compiled it), and I would like to insert instructions between existing instructions of the assembly code before loading the DLL into memory. Of ...
3
votes
6answers
148 views
I need to recover my source code from the executable
It's the middle of the night, and I've accidently overwritten all my work by typing
gcc source.c -o source.c
I still have the original binary and my only hope is to dissemble it, but I don't know ...
3
votes
3answers
668 views
Free 64-bit disassembler?
Is there any free AMD64 disassembler?
It seems like there are a lot of x86 disassemblers, but they can't open 64-bit files...
Update:
Are there any tools that can show exported symbols in the ...
3
votes
1answer
1k views
disassembler in Xcode?
I'm working on a project, and on a machine without Xcode, I'm getting a crash. (of course it works on my machine B-/) I have a crash log, with a PC offset for the crash. I'd like to be able to see ...
2
votes
1answer
30 views
how does arm movw instruction map to machine code?
I am currently trying to understand how does the movw instruction work on ARM, to be able to hex edit a library and change a value that is being set with said instruction.
The library presents code ...
2
votes
3answers
76 views
Are we looking at the original code in a Disassembler or reverse engineered CIL?
Take ILSPy. When I view my assembly am I looking at my original C#? Or, is this code reconstructed from CIL using some type of reverse engineering process?
My understanding is that release ...
2
votes
1answer
455 views
x86 opcode encoding: sib byte
Im currently trying to write a disassembler. I found the following list of opcodes and their meanings, so i decided to parse it at runtime:
http://mprolab.teipir.gr/vivlio80X86/pentium.txt
But i am ...
2
votes
3answers
51 views
Disassembler that tracks what value is where
So lately I've been looking at the disassembly of my C++ code, and having to manually track what's in each register, like this:
95: 48 8b 16 mov (%rsi),%rdx ; %rdx = ...
2
votes
3answers
420 views
Can you help with this assembly language code?
I've been looking through a piece of code of a pc game that I'm trying to "improve". (ok so maybe I suck at the game but I still want to play it). Could you please look into the following code:
fld ...
1
vote
1answer
21 views
Changes to the program. IDA disassembler
There is such part of a code.
/* bla bla bla */
.text:0040C777 align 4
.text:0040C778
.text:0040C778 loc_40C778: ; CODE XREF: sub_40C424+289j
...
1
vote
2answers
428 views
Is it possible in IDA Pro to make a struct field offset to vtable which is defined in .data segment?
Here is what I want to achieve. I identified a class which I defined as a struct to store class data. One of the methods of the class uses class-field as if it's pointer to vtable.
int __thiscall ...
1
vote
3answers
111 views
Where I can find AVM2 disassembler (or dump tool)?
Greetings
I found this nice answer:
How are methods found in AVM2 bytecode?
See number 3.
May anyone help me?
What is the tool used to produce abcFile dump?
Thank you!
1
vote
2answers
223 views
Making space for added bytecode (machine code) in a Windows PE executable
This question is related to reverse engineering / binary patching on Windows.
I need a free tool exist to allow me to add assembler (or machine code) to an already built executable. I am not talking ...
1
vote
5answers
310 views
Disassemble x86 code in a program at a specific address
Is there any x86 disassembler framework that can be used to analyze code from a specific address in a program, as in:
info = disassemble( startAddress , stopAddress)
It should show every ...
1
vote
1answer
788 views
Decompiling x86 PE binary to C?
I'd like to know if there's any way to generate the C code of a x86 PE binary. I don't really need this, I just want to learn how some closed-source software are working.
From my common sense, I ...
1
vote
3answers
623 views
Simple HEX disassembler
I'm looking for a really simple HEX disassembler for Windows that I can just throw some HEX at (either as text, or in a bin file) and have it disassemble it. At the moment I'm using the DOS debug ...
1
vote
4answers
4k views
ARMV4i (Windows Mobile 6) Native Code disassembler
Does anyone know of a disassembler for ARMV4i compiled executables and dlls?
I've got a plugin DLL I'm writing and it has a very rare data abort (<5% of the time) that I have narrowed down to a ...
0
votes
1answer
84 views
MIPS Linux assembler code understanding about load byte
I have the following question here
I need to understand the following MIPS disassembling code:
.text:00489060 la $v0, 0x4D0000
.text:00489064 la $v0, 0x4D0000
...
0
votes
1answer
157 views
Looking for a good x86 assembler and disassembler library
I'm writing a polymorphic engine for a security related project, I need to programtically identify x86 code and identify patterns in it. BeaEngine is awesome, the only thing is, I'm not sure if it can ...
0
votes
2answers
49 views
Is there a scriptable way to extract asm from a function? (VS2010, gcc)
I would like to be able to compare the asm generated by visual studio and gcc for a particular function. For the sake of argument, lets say that we already know this function exists in both binaries.
...
0
votes
1answer
327 views
IDA pro Reverse Engineering — String Condition
I'm using IDA pro to reverse a trojan with a packer, and I saw that the trojan unpack some files,
(two files actually) by depacking my trojan with winrar. Now I would like to see what's really going ...
0
votes
4answers
184 views
Is there any disassembler which generates compilable assembly source code?
I would like to know, is there any Windows platform disassembler (software) can generate the assembly source code which is also compilable by an assembler?
Since disassembler can generate the ...
0
votes
4answers
742 views
How do I compare the contents of two dlls?
I would like to compare several dlls of one install to several dlls of another install of the application I'm working with. I need to ensure they are exact same. How do I compare two dlls to ensure ...
0
votes
5answers
331 views
PIC disassembler Needed
I want to disassemble a hex file of PIC16F877A. Is there any good disassembler ? After disassembly is it possible to compile again ? What are the things I have to take care of ?
0
votes
5answers
892 views
What is a good android disassember that can produce infomative results
as titled, like function calls, application behavior when running
0
votes
8answers
261 views
Best/Easiest Language To Work With Disassembling
I'm now thinking to develop a disassembler, but as I know that it's very hard to build a disassembler I want to know the best/easiest language to turn my dream into a reality, also, a tutorial ...