Decompile ELF on Windows

20,677

You don't need to execute the binary in order to perform binary decompilation, it's something that usually happens statically, thus it'd work with ELF on Windows.

You can decompile binaries with IDA using several ways:

Share:
20,677

Related videos on Youtube

Evyatar
Author by

Evyatar

Vulnerability Researcher | Frida | Xposed | CTF player | gdb | Ghidra | IDA | pwntools | C++ | Java | C# | Python | Spark | Hadoop | Splunk | PT. Visit my github repository - contains writeups for various CTFs I've participated in (Including HTB).

Updated on September 17, 2020

Comments

  • Evyatar
    Evyatar almost 4 years

    I want to decompile file ELF 64-bit LSB executable with IDA on Windows, Its possible? If no, How can I do it on linux?

    Thanks

    • Mort
      Mort over 6 years
      objdump and other tools from binutils.
    • Unh0lys0da
      Unh0lys0da over 6 years
      Do you mean decompile or disassemble?, because those are quite different.