2

I cannot load the following executable type in OllyDbg: - ELF 32-bit LSB executable, Intel 80386

Why can OllyDbg not handle this kind of executables? What are good (OllyDbg-like) debuggers to debug ELF?

bsdanm
  • 23
  • 1
  • 1
  • 3

1 Answers1

3

Ollydbg debugger is for Microsoft Windows executables and DLLs. For debugging ELF I use GDB debugger. GDB can come with a GUI and you can find more about that in this answer . Besides GDB, for reversing ELF files on Linux I would also suggest radare2.

ubnix
  • 1,073
  • 7
  • 15