Linux – How to decompile a ELF 32-bit LSB executable

linux

I have a ELF 32-bit LSB executable, Intel 80386, version 1 (SYSV), dynamically linked (uses shared libs), which is also stripped, and I want to explore it. Does anyone know how to decompile such a file?

Best Answer

IDA plus Hex-Rays decompiler can decompile (to pseudo-C code) most of 32-bit x86 code, including Linux ELF files.

Disclaimer: I work for Hex-Rays.

Related Topic