Reputation: 2630
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
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
Reputation: 28839
I don't know about 'the simpliest way' [sic] but I highly recommend the IDA Pro - Free Edition disassembler.
Upvotes: 3
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