0x6B6F77616C74
0x6B6F77616C74

Reputation: 2630

Disassembler program for x86 architecture

I downloaded ollyDbg, but it seems to be that it doesn't have a disassembler integrated by default . Disasm.zip file on the official web page contains only source code, but in order to compile it, we must install a lot of obsolete libraries (f.ex MSDOS's dir.h).
Therefore,I'm asking for the simplest way to translate from machine code(.exe) to x86 assembly language(.asm).

Upvotes: 0

Views: 4648

Answers (3)

Anthony DeRosa
Anthony DeRosa

Reputation: 965

ODA, the Online Disassembler, is a free, web-based reverse engineering platform that supports x86 and many other architectures. Check it out at www.onlinedisassembler.com

Upvotes: 1

I don't know about 'the simpliest way' [sic] but I highly recommend the IDA Pro - Free Edition disassembler.

Upvotes: 3

m0skit0
m0skit0

Reputation: 25874

For me best disassembler is ndisasm, which comes with NASM assembler.

Also OllyDbg indeed comes with a disassembler, that's why you can see assembly from an EXE... Otherwise it would be pretty much useless as debugger.

Upvotes: 0

Related Questions