Top "Disassembly" questions

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

How to make gdb show the original non-mangling function name on disassembly model?

void outputString(const char *str) { cout << "outputString(const char *str) : " << str << endl; } turns out …

gdb name-mangling disassembly
ILDASM and ILASM, how use them?

I'm having a hard time trying to (Dis)assemble a dll using the Visual Studio command prompt, don't look that …

c# disassembly cil ildasm ilasm
PowerPC opcode table?

I am interested in developing a PowerPC emulator for my own learning purposes. I've found a fair amount of resources …

assembly disassembly powerpc instruction-set opcode
What is the meaning of "static synthetic"?

I am looking at some disassembled code obtained from Java bytecode. I see some declaration as follows: .method static synthetic …

java bytecode disassembly java-synthetic-methods
How to print disassembly registers in the Xcode console

I'm looking at some disassembly code and see something like 0x01c8f09b <+0015> mov 0x8(%edx),%edi …

objective-c xcode gdb disassembly
Can radare2 print local variables by name?

When radare2 analyzes a function, it gives local variables names such as local_4h for ebp - 0x4. It also …

reverse-engineering disassembly
Are there any IDA Pro alternatives?

Are there any disassembler which provide a feature set comparable to IDA Pro? I'm interested in both free and commercial …

debugging disassembly
Is there a disassembler + debugger for java (ala OllyDbg / SoftICE for assembler)?

Is there a utility similar to OllyDbg / SoftICE for java? I.e. execute class (from jar / with class path) and, …

java debugging system disassembly javap
Modify Emdeded String in C# compiled exe

I have an issue where I need to be able to have a compiled exe ( .net 3.5 c# ) that I will …

c# assemblies executable disassembly code-injection
Determine source language from a binary?

I responded to another question about developing for the iPhone in non-Objective-C languages, and I made the assertion that using, …

programming-languages binary disassembly