Top "Disassembly" questions

Involves turning "compiled" code (such as machine code, byte code or IR code) back in higher-level assembly mnemonics.

How to decompile an APK or DEX file on Android platform?

Is it possible to decompile an APK package or DEX file on Android platform? Are there any tools that can …

android disassembly decompiling malware-detection
How to disassemble a binary executable in Linux to get the assembly code?

I was told to use a disassembler. Does gcc have anything built in? What is the easiest way to do …

c++ linux assembly executable disassembly
How to disassemble a memory range with GDB?

I'm trying to disassemble a program to see a syscall assembly instruction (the INT instruction, I believe) and the handler …

gdb disassembly
How can I see the assembly code for a C++ program?

How can I see the assembly code for a C++ program? What are the popular tools to do this?

c++ assembly disassembly
Using objdump for ARM architecture: Disassembling to ARM

I have an object file and am trying to disassemble it. When I use: objdump -d example.o I get …

linux arm disassembly objdump
How to disassemble one single function using objdump?

I've got a binary installed on my system, and would like to look at the disassembly of a given function. …

elf debug-symbols disassembly objdump dwarf
Disassembling A Flat Binary File Using objdump

Can I disassemble a flat binary file using objdump? I'm familiar with disassembling a structured binary executable such as an …

reverse-engineering disassembly objdump
What is your favorite disassembler tool in Mac OS X?

I am using the otool, nm and Fraise text editor to disassemble the Mach-o binaries. My workflow at this point …

macos assembly disassembly nm otool
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 …

.net dll comparison disassembly
How does objdump manage to display source code with the -S option?

Is there a reference to the source file in the binary? I tried running strings on the binary and couldn't …

c linux gcc disassembly objdump